blob: a653318ffe6f89fbf917aee2ad12cb4759e0a61f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
buildPythonPackage,
fetchFromGitHub,
lib,
pip,
setuptools,
wheel,
}:
buildPythonPackage rec {
pname = "zc-buildout";
version = "3.0.1";
src = fetchFromGitHub {
owner = "buildout";
repo = "buildout";
rev = version;
sha256 = "J/ymUCFhl7EviHMEYSUCTky0ULRT8aL4gNCGxrbqJi0=";
};
propagatedBuildInputs = [
setuptools
pip
wheel
];
doCheck = false; # Missing package & BLOCKED on "zc.recipe.egg"
pythonImportsCheck = [ "zc.buildout" ];
meta = with lib; {
description = "Software build and configuration system";
mainProgram = "buildout";
downloadPage = "https://github.com/buildout/buildout";
homepage = "https://www.buildout.org";
license = licenses.zpl21;
maintainers = with maintainers; [ gotcha ];
};
}
|