mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
40 lines
791 B
Nix
40 lines
791 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|