1{ fetchPypi, stdenv, buildPythonPackage }:
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 patches = [ ./nix.patch ];
13
14 postInstall = "mv $out/bin/buildout{,-nix}";
15
16 meta = {
17 homepage = "http://www.buildout.org";
18 description = "A software build and configuration system";
19 license = stdenv.lib.licenses.zpl21;
20 maintainers = [ stdenv.lib.maintainers.goibhniu ];
21 };
22}