2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchFromGitHub,
|
|
|
|
lib,
|
|
|
|
pip,
|
|
|
|
setuptools,
|
|
|
|
wheel,
|
2021-10-28 06:52:43 +00:00
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2021-10-28 06:52:43 +00:00
|
|
|
pname = "zc-buildout";
|
2022-12-17 10:02:37 +00:00
|
|
|
version = "3.0.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-10-28 06:52:43 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "buildout";
|
|
|
|
repo = "buildout";
|
|
|
|
rev = version;
|
2022-12-17 10:02:37 +00:00
|
|
|
sha256 = "J/ymUCFhl7EviHMEYSUCTky0ULRT8aL4gNCGxrbqJi0=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-10-28 06:52:43 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
setuptools
|
|
|
|
pip
|
|
|
|
wheel
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = false; # Missing package & BLOCKED on "zc.recipe.egg"
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "zc.buildout" ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Software build and configuration system";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "buildout";
|
2021-10-28 06:52:43 +00:00
|
|
|
downloadPage = "https://github.com/buildout/buildout";
|
|
|
|
homepage = "https://www.buildout.org";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.zpl21;
|
2022-12-17 10:02:37 +00:00
|
|
|
maintainers = with maintainers; [ gotcha ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|