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