about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-twisted/default.nix
blob: 789af67694158a914981bf9a068acbd4e560540e (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
{ lib
, buildPythonPackage
, fetchPypi
, greenlet
, pytest
, decorator
}:

buildPythonPackage rec {
  pname = "pytest-twisted";
  version = "1.13.2";

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

  buildInputs = [ pytest ];

  propagatedBuildInputs = [ greenlet decorator ];

  meta = with lib; {
    description = "A twisted plugin for py.test";
    homepage = "https://github.com/pytest-dev/pytest-twisted";
    license = licenses.bsd3;
    maintainers = [ maintainers.marsam ];
  };
}