python.pkgs.plone-testing: init at 5.1.1

This commit is contained in:
Frederik Rietdijk 2018-01-01 15:46:47 +01:00
parent bdaded3804
commit 32020d06a3
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ lib
, buildPythonPackage
, fetchPypi
, zope_testing
, setuptools
}:
buildPythonPackage rec {
pname = "plone.testing";
version = "5.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "2ca558a910b93355b760535b233518be3a06c58e46160487bf802b6f7cb1e511";
};
propagatedBuildInputs = [ setuptools zope_testing ];
# Huge amount of testing dependencies (including Zope2)
doCheck = false;
meta = {
description = "Testing infrastructure for Zope and Plone projects";
homepage = https://github.com/plone/plone.testing;
license = lib.licenses.bsd3;
};
}

View File

@ -12073,6 +12073,8 @@ in {
};
};
plone-testing = callPackage ../development/python-modules/plone-testing { };
ply = buildPythonPackage (rec {
name = "ply-3.8";