summary refs log tree commit diff
path: root/pkgs/development/python-modules/zope_testrunner/default.nix
blob: 7f2af64d91591ffb8945730db8f4d6acd7c9137b (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
31
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, zope_interface
, zope_exceptions
, zope_testing
, six
}:


buildPythonPackage rec {
  pname = "zope.testrunner";
  version = "4.7.0";
  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    sha256 = "8ffcb4989829544a83d27e42b2eeb28f8fc134bd847d71ce8dca54f710526ef0";
    extension = "zip";
  };

  propagatedBuildInputs = [ zope_interface zope_exceptions zope_testing six ];

  meta = with stdenv.lib; {
    description = "A flexible test runner with layer support";
    homepage = http://pypi.python.org/pypi/zope.testrunner;
    license = licenses.zpl20;
    maintainers = [ maintainers.goibhniu ];
  };
}