python3Packages.jaraco-functools: 4.1.0 -> 4.2.1

https://github.com/jaraco/jaraco.functools/blob/v4.2.1/NEWS.rst

This commit was automatically generated using update-python-libraries.

Changed files
+6 -2
pkgs
development
python-modules
jaraco-functools
+6 -2
pkgs/development/python-modules/jaraco-functools/default.nix
···
buildPythonPackage rec {
pname = "jaraco-functools";
-
version = "4.1.0";
+
version = "4.2.1";
pyproject = true;
disabled = pythonOlder "3.8";
···
src = fetchPypi {
pname = "jaraco_functools";
inherit version;
-
hash = "sha256-cPfg4q4HZJjiElYjJegFIE/Akte0wX4OhslZ4klwGp0=";
+
hash = "sha256-vmNKv8yrzlb6MFP4x+vje2gmg6Tud5NnDO0XurAIc1M=";
};
+
+
postPatch = ''
+
sed -i "/coherent\.licensed/d" pyproject.toml
+
'';
build-system = [
setuptools