about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/zope_testing/default.nix
blob: 3d7cbf90c25f9b135b265132fa09e4eae201ac81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, isPyPy
, zope_interface
, zope_exceptions
, zope_location
}:

buildPythonPackage rec {
  pname = "zope.testing";
  version = "4.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "d66be8d1de37e8536ca58a1d9f4d89a68c9cc75cc0e788a175c8a20ae26003ea";
  };

  doCheck = !isPyPy;

  propagatedBuildInputs = [ zope_interface zope_exceptions zope_location ];

  meta = with lib; {
    description = "Zope testing helpers";
    homepage =  "http://pypi.python.org/pypi/zope.testing";
    license = licenses.zpl20;
    maintainers = with maintainers; [ goibhniu ];
  };

}