about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/buildout/default.nix
blob: 796eaa18259ffe00cca1e3693e5e2b6f2bea79d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "zc.buildout";
  version = "2.13.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "b978b2f9317b317ee4191f78fcc4f05b1ac41bdaaae47f0956f14c8285feef63";
  };

  meta = with lib; {
    homepage = "http://www.buildout.org";
    description = "A software build and configuration system";
    license = licenses.zpl21;
    maintainers = with maintainers; [ ];
  };
}