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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "1dyc5g3yv7wm3hf3fcsh6y1wivzjj1bspafr5qqb653z9a31lsfn";
  };

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