checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
49 lines
915 B
Nix
49 lines
915 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, func-timeout
|
|
, jaraco_itertools
|
|
, pythonOlder
|
|
, setuptools-scm
|
|
}:
|
|
|
|
let zipp = buildPythonPackage rec {
|
|
pname = "zipp";
|
|
version = "3.11.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-p6IuBZKSkKZ0AUQLOWkK5lYyebztXzFGCdnQN5j1Z2Y=";
|
|
};
|
|
|
|
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
|