nixpkgs/pkgs/development/python-modules/zipp/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

49 lines
913 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, func-timeout
, jaraco_itertools
, pythonOlder
, setuptools-scm
}:
let zipp = buildPythonPackage rec {
pname = "zipp";
version = "3.15.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-ESkprWSdqUHCPeUPNWorVXDJVLZRUGQrzN1mvxlNIks=";
};
nativeBuildInputs = [
setuptools-scm
];
# Prevent infinite recursion with pytest
doCheck = false;
nativeCheckInputs = [
func-timeout
jaraco_itertools
];
pythonImportsCheck = [
"zipp"
];
passthru.tests = {
check = zipp.overridePythonAttrs (_: { doCheck = true; });
};
meta = with lib; {
description = "Pathlib-compatible object wrapper for zip files";
homepage = "https://github.com/jaraco/zipp";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}; in zipp