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

29 lines
601 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";
2019-10-16 10:43:11 +01:00
version = "7.0.2";
src = fetchPypi {
inherit pname version;
2019-10-16 10:43:11 +01:00
sha256 = "2533c48b7bd54ff19da2b4f0c3ccd0a8878c46f03fadbf5f933baaf749d17690";
};
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
}