nixpkgs/pkgs/development/python-modules/zope_interface/default.nix
2020-05-11 22:13:15 +02:00

25 lines
515 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, zope_event
}:
buildPythonPackage rec {
pname = "zope.interface";
version = "4.7.2";
src = fetchPypi {
inherit pname version;
sha256 = "fd1101bd3fcb4f4cf3485bb20d6cb0b56909b94d3bd2a53a6cb9d381c3da3365";
};
propagatedBuildInputs = [ zope_event ];
meta = with stdenv.lib; {
description = "Zope.Interface";
homepage = "http://zope.org/Products/ZopeInterface";
license = licenses.zpl20;
maintainers = [ maintainers.goibhniu ];
};
}