My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/zope-deferredimport/default.nix

33 lines
716 B

{ 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 ];
checkInputs = [ 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;
};
}