1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "zc.buildout";
5 version = "2.13.3";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "1dyc5g3yv7wm3hf3fcsh6y1wivzjj1bspafr5qqb653z9a31lsfn";
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; [ ];
17 };
18}