nixpkgs/pkgs/development/python-modules/buildout/default.nix

19 lines
466 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "zc.buildout";
2018-05-09 15:45:48 +01:00
version = "2.2.5";
src = fetchPypi {
inherit pname version;
2018-05-09 15:45:48 +01:00
sha256 = "fb08f24f9e51e647e29d714f6e9ad51a4ea28673dddeed831315617bb5a805d0";
};
meta = with stdenv.lib; {
homepage = http://www.buildout.org;
description = "A software build and configuration system";
license = licenses.zpl21;
maintainers = with maintainers; [ garbas ];
};
}