nixpkgs/pkgs/development/python-modules/zipp/default.nix
2022-06-06 11:46:12 -07:00

49 lines
908 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, func-timeout
, jaraco_itertools
, pythonOlder
, setuptools-scm
}:
let zipp = buildPythonPackage rec {
pname = "zipp";
version = "3.8.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Vr+Krbg8JNtsS1d+E943TM+2faIHi+uh0DfBeYC/Q60=";
};
nativeBuildInputs = [
setuptools-scm
];
# Prevent infinite recursion with pytest
doCheck = false;
checkInputs = [
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