mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 11:00:19 +03:00
python.pkgs.zope-deferredimport: init at 4.3
This commit is contained in:
parent
0107125d32
commit
5a778bcac7
@ -0,0 +1,31 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, zope_proxy
|
||||
, zope_testrunner
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "zope-deferredimport";
|
||||
version = "4.3";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "zope.deferredimport";
|
||||
inherit version;
|
||||
sha256 = "2ddef5a7ecfff132a2dd796253366ecf9748a446e30f1a0b3a636aec9d9c05c5";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ zope_proxy ];
|
||||
|
||||
checkInputs = [ zope_testrunner ];
|
||||
|
||||
checkPhase = ''
|
||||
zope-testrunner --test-path=src []
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Allows you to perform imports names that will only be resolved when used in the code";
|
||||
homepage = http://github.com/zopefoundation/zope.deferredimport;
|
||||
license = licenses.zpl21;
|
||||
};
|
||||
}
|
@ -4409,6 +4409,8 @@ in {
|
||||
|
||||
zope_contenttype = callPackage ../development/python-modules/zope_contenttype { };
|
||||
|
||||
zope-deferredimport = callPackage ../development/python-modules/zope-deferredimport { };
|
||||
|
||||
zope_dottedname = callPackage ../development/python-modules/zope_dottedname { };
|
||||
|
||||
zope_event = callPackage ../development/python-modules/zope_event { };
|
||||
|
Loading…
Reference in New Issue
Block a user