3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/plone-testing/default.nix

29 lines
603 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
2019-01-07 10:09:56 +00:00
, six
, zope_testing
, setuptools
}:
buildPythonPackage rec {
pname = "plone.testing";
2020-07-31 09:56:43 +01:00
version = "8.0.1";
src = fetchPypi {
inherit pname version;
2020-07-31 09:56:43 +01:00
sha256 = "e079c87f821cf2e411826940e65577a88e08827cf9a2b771070f2917a439b642";
};
2019-01-07 10:09:56 +00:00
propagatedBuildInputs = [ six 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;
};
2019-01-07 10:09:56 +00:00
}