9 buildPythonPackage rec {
10 pname = "iteration-utilities";
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
18 repo = "iteration_utilities";
19 rev = "refs/tags/v${version}";
20 hash = "sha256-SiqNUyuvsD5m5qz5ByYyVln3SSa4/D4EHpmM+pf8ngM=";
23 nativeCheckInputs = [ pytestCheckHook ];
25 pythonImportsCheck = [ "iteration_utilities" ];
28 description = "Utilities based on Pythons iterators and generators";
29 homepage = "https://github.com/MSeifert04/iteration_utilities";
30 changelog = "https://github.com/MSeifert04/iteration_utilities/releases/tag/v${version}";
31 license = licenses.asl20;