mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-25 06:13:54 +00:00
33afbf39f6
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.
34 lines
722 B
Nix
34 lines
722 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, zope_proxy
|
|
, zope_testrunner
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zope-deferredimport";
|
|
version = "4.4";
|
|
|
|
src = fetchPypi {
|
|
pname = "zope.deferredimport";
|
|
inherit version;
|
|
sha256 = "2ae3257256802787e52ad840032f39c1496d3ce0b7e11117f663420e4a4c9add";
|
|
};
|
|
|
|
propagatedBuildInputs = [ zope_proxy ];
|
|
|
|
nativeCheckInputs = [ zope_testrunner ];
|
|
|
|
checkPhase = ''
|
|
zope-testrunner --test-path=src []
|
|
'';
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Allows you to perform imports names that will only be resolved when used in the code";
|
|
homepage = "https://github.com/zopefoundation/zope.deferredimport";
|
|
license = licenses.zpl21;
|
|
};
|
|
}
|