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_lifecycleevent/default.nix

36 lines
806 B

{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, zope_event
, zope_component
}:
buildPythonPackage rec {
pname = "zope.lifecycleevent";
version = "4.4";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-9ahU6J/5fe6ke/vqN4u77yeJ0uDMkKHB2lfZChzmfLU=";
};
propagatedBuildInputs = [ zope_event zope_component ];
# namespace colides with local directory
doCheck = false;
# zope uses pep 420 namespaces for python3, doesn't work with nix + python2
pythonImportsCheck = lib.optionals isPy3k [
"zope.lifecycleevent"
"zope.interface"
];
meta = with lib; {
homepage = "https://github.com/zopefoundation/zope.lifecycleevent";
description = "Object life-cycle events";
license = licenses.zpl20;
maintainers = with maintainers; [ goibhniu ];
};
}