summary refs log tree commit diff
path: root/pkgs/development/python-modules/setuptoolstrial/default.nix
blob: f959458d26532681fafee547e92d93e3c48d1978 (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
32
33
34
35
36
37
38
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, virtualenv
, pytest-runner
, pytest-virtualenv
, twisted
, pathlib2
}:

buildPythonPackage rec {
  pname = "setuptools_trial";
  version = "0.6.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "14220f8f761c48ba1e2526f087195077cf54fad7098b382ce220422f0ff59b12";
  };

  buildInputs = [ pytest virtualenv pytest-runner pytest-virtualenv ];
  propagatedBuildInputs = [ twisted pathlib2 ];

  postPatch = ''
    sed -i '12,$d' tests/test_main.py
  '';

  # Couldn't get tests working
  doCheck = false;

  meta = with lib; {
    description = "Setuptools plugin that makes unit tests execute with trial instead of pyunit.";
    homepage = "https://github.com/rutsky/setuptools-trial";
    license = licenses.bsd2;
    maintainers = with maintainers; [ ryansydnor ];
  };

}