40 lines
832 B
Nix
40 lines
832 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
lib,
|
|
pip,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zc-buildout";
|
|
version = "4.1.12";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "buildout";
|
|
repo = "buildout";
|
|
tag = version;
|
|
hash = "sha256-4MutmUuF4WdoD/wdhYtpVvOYBJEv+2JVkskmO6sz24U=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ pip ];
|
|
|
|
doCheck = false; # Missing package & BLOCKED on "zc.recipe.egg"
|
|
|
|
pythonImportsCheck = [ "zc.buildout" ];
|
|
|
|
pythonNamespaces = [ "zc" ];
|
|
|
|
meta = {
|
|
description = "Software build and configuration system";
|
|
mainProgram = "buildout";
|
|
downloadPage = "https://github.com/buildout/buildout";
|
|
homepage = "https://www.buildout.org";
|
|
license = lib.licenses.zpl21;
|
|
maintainers = with lib.maintainers; [ gotcha ];
|
|
};
|
|
}
|