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