1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "zc.buildout";
5 version = "2.12.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "1e180b62fd129a68cb3a9ec8eb0ef457e18921269a93e87ef2cc34519415332d";
10 };
11
12 meta = with stdenv.lib; {
13 homepage = http://www.buildout.org;
14 description = "A software build and configuration system";
15 license = licenses.zpl21;
16 maintainers = with maintainers; [ garbas ];
17 };
18}