depot/third_party/nixpkgs/pkgs/development/python-modules/plone-testing/default.nix

34 lines
610 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchPypi,
six,
zope-testing,
setuptools,
}:
buildPythonPackage rec {
pname = "plone.testing";
version = "9.0.1";
src = fetchPypi {
inherit pname version;
hash = "sha256-xdzm4LG/W5ziYXaXbCOfQbZYZvaUUih3lWhkLzWqeUc=";
};
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;
};
}