nixpkgs/pkgs/development/python-modules/iteration-utilities/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

29 lines
680 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "iteration-utilities";
version = "0.11.0";
src = fetchFromGitHub {
owner = "MSeifert04";
repo = "iteration_utilities";
rev = "v${version}";
hash = "sha256-Q/ZuwAf+NPikN8/eltwaUilnLw4DKFm864tUe6GLDak=";
};
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "iteration_utilities" ];
meta = with lib; {
description = "Utilities based on Pythons iterators and generators";
homepage = "https://github.com/MSeifert04/iteration_utilities";
license = licenses.asl20;
maintainers = with maintainers; [ jonringer ];
};
}