python3Packages.zc_buildout: 2.13.4 -> 3.0.0b2

conduit-nginx
superherointj 2021-09-02 15:22:59 -03:00
parent f5a5a3e95c
commit 0f37973306
1 changed files with 27 additions and 8 deletions

View File

@ -1,18 +1,37 @@
{ lib, buildPythonPackage, fetchPypi }:
{ buildPythonPackage
, fetchFromGitHub
, lib
, pip
, setuptools
, wheel
}:
buildPythonPackage rec {
pname = "zc.buildout";
version = "2.13.4";
pname = "zc_buildout";
version = "3.0.0b2";
src = fetchPypi {
inherit pname version;
sha256 = "b978b2f9317b317ee4191f78fcc4f05b1ac41bdaaae47f0956f14c8285feef63";
src = fetchFromGitHub {
owner = "buildout";
repo = "buildout";
rev = version;
sha256 = "01sj09xx5kmkzynhq1xd8ahn6xqybfi8lrqjqr5lr45aaxjk2pid";
};
propagatedBuildInputs = [
setuptools
pip
wheel
];
doCheck = false; # Missing package & BLOCKED on "zc.recipe.egg"
pythonImportsCheck = [ "zc.buildout" ];
meta = with lib; {
homepage = "http://www.buildout.org";
description = "A software build and configuration system";
downloadPage = "https://github.com/buildout/buildout";
homepage = "https://www.buildout.org";
license = licenses.zpl21;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ superherointj ];
};
}