My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/plone-testing/default.nix

28 lines
603 B

{ lib
, buildPythonPackage
, fetchPypi
, six
, zope_testing
, setuptools
}:
buildPythonPackage rec {
pname = "plone.testing";
version = "8.0.3";
src = fetchPypi {
inherit pname version;
sha256 = "39bc23bbb59b765702090ad61fe579f8bd9fe1f005f4dd1c2988a5bd1a71faf0";
};
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;
};
}