nixpkgs/pkgs/development/python-modules/zope_interface/default.nix
Michael Weiss 4b0afc169d zpl*: Fix the attribute name of the license
This was simply a typo since the license was added in 2013.
2017-08-06 13:49:18 +02:00

26 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 ];
};
}