2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
2018-03-31 16:36:33 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zc.buildout";
|
2020-03-16 05:43:12 +00:00
|
|
|
version = "2.13.3";
|
2018-03-31 16:36:33 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-03-16 05:43:12 +00:00
|
|
|
sha256 = "1dyc5g3yv7wm3hf3fcsh6y1wivzjj1bspafr5qqb653z9a31lsfn";
|
2018-03-31 16:36:33 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-03-16 05:43:12 +00:00
|
|
|
homepage = "http://www.buildout.org";
|
2018-03-31 16:36:33 +01:00
|
|
|
description = "A software build and configuration system";
|
|
|
|
license = licenses.zpl21;
|
2019-07-03 10:27:39 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2018-03-31 16:36:33 +01:00
|
|
|
};
|
|
|
|
}
|