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

26 lines
541 B

{ lib
, buildPythonPackage
, fetchPypi
, zope_event
}:
buildPythonPackage rec {
pname = "zope.interface";
version = "5.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "5dba5f530fec3f0988d83b78cc591b58c0b6eb8431a85edd1569a0539a8a5a0e";
};
propagatedBuildInputs = [ zope_event ];
doCheck = false; # Circular deps.
meta = with lib; {
description = "Zope.Interface";
homepage = "https://zope.org/Products/ZopeInterface";
license = licenses.zpl20;
maintainers = [ maintainers.goibhniu ];
};
}