4b0afc169d
This was simply a typo since the license was added in 2013.
25 lines
545 B
Nix
25 lines
545 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, zope_event
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zope.interface";
|
|
version = "4.4.2";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "4e59e427200201f69ef82956ddf9e527891becf5b7cde8ec3ce39e1d0e262eb0";
|
|
};
|
|
|
|
propagatedBuildInputs = [ zope_event ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Zope.Interface";
|
|
homepage = http://zope.org/Products/ZopeInterface;
|
|
license = licenses.zpl20;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|