lol

python313Packages.toolz: 0.12.1 -> 1.0.0

https://github.com/pytoolz/toolz/releases/tag/1.0.0

+7 -3
+7 -3
pkgs/development/python-modules/toolz/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchPypi, 5 + setuptools, 5 6 pytestCheckHook, 6 7 }: 7 8 8 9 buildPythonPackage rec { 9 10 pname = "toolz"; 10 - version = "0.12.1"; 11 - format = "setuptools"; 11 + version = "1.0.0"; 12 + pyproject = true; 12 13 13 14 src = fetchPypi { 14 15 inherit pname version; 15 - hash = "sha256-7Mo0JmSJPxd6E9rA5rQcvYrCWjWOXyFTFtQ+IQAiT00="; 16 + hash = "sha256-LIbj2aBHmKxVZ5O87YOIFilqLwhQF2ZOSZXLQKEEegI="; 16 17 }; 18 + 19 + build-system = [ setuptools ]; 17 20 18 21 nativeCheckInputs = [ pytestCheckHook ]; 19 22 ··· 24 27 25 28 meta = with lib; { 26 29 homepage = "https://github.com/pytoolz/toolz"; 30 + changelog = "https://github.com/pytoolz/toolz/releases/tag/${version}"; 27 31 description = "List processing tools and functional utilities"; 28 32 license = licenses.bsd3; 29 33 };