Merge pull request #167802 from r-ryantm/auto-update/python310Packages.slicerator

python310Packages.slicerator: 1.0.0 -> 1.1.0

authored by Fabian Affolter and committed by GitHub 234bc946 a34ce686

+8 -7
+8 -7
pkgs/development/python-modules/slicerator/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , python 5 - , six 5 + , pythonOlder 6 6 }: 7 7 8 8 buildPythonPackage rec { 9 - version = "1.0.0"; 10 9 pname = "slicerator"; 10 + version = "1.1.0"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.7"; 11 14 12 15 src = fetchPypi { 13 16 inherit pname version; 14 - sha256 = "18e60393e6765ca96986f801bbae62a617a1eba6ed57784e61b165ffc7dc1848"; 17 + hash = "sha256-RAEKf1zYdoDAchO1yr6B0ftxJSlilD5Tc+59FGBdYEY="; 15 18 }; 16 - 17 - propagatedBuildInputs = [ six ]; 18 19 19 20 checkPhase = '' 20 21 ${python.interpreter} run_tests.py ··· 24 25 doCheck = false; 25 26 26 27 meta = with lib; { 27 - homepage = "https://github.com/soft-matter/slicerator"; 28 28 description = "A lazy-loading, fancy-sliceable iterable"; 29 + homepage = "https://github.com/soft-matter/slicerator"; 29 30 license = licenses.bsdOriginal; 30 - maintainers = [ maintainers.costrouc ]; 31 + maintainers = with maintainers; [ costrouc ]; 31 32 }; 32 33 }