mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
python.pkgs.plone-testing: init at 5.1.1
This commit is contained in:
parent
bdaded3804
commit
32020d06a3
27
pkgs/development/python-modules/plone-testing/default.nix
Normal file
27
pkgs/development/python-modules/plone-testing/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -12073,6 +12073,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
plone-testing = callPackage ../development/python-modules/plone-testing { };
|
||||
|
||||
ply = buildPythonPackage (rec {
|
||||
name = "ply-3.8";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user