linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / testtools / default.nix
blob8ef3d9c4320f1883169c8eb6183e0596441196ed
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pbr
5 , python_mimeparse
6 , extras
7 , unittest2
8 , traceback2
9 , testscenarios
12 buildPythonPackage rec {
13   pname = "testtools";
14   version = "2.4.0";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "64c974a6cca4385d05f4bbfa2deca1c39ce88ede31c3448bee86a7259a9a61c8";
19   };
21   propagatedBuildInputs = [ pbr python_mimeparse extras unittest2 ];
22   buildInputs = [ traceback2 ];
24   # testscenarios has a circular dependency on testtools
25   doCheck = false;
26   checkInputs = [ testscenarios ];
28   # testtools 2.0.0 and up has a circular run-time dependency on futures
29   postPatch = ''
30     substituteInPlace requirements.txt --replace "fixtures>=1.3.0" ""
31   '';
33   meta = {
34     description = "A set of extensions to the Python standard library's unit testing framework";
35     homepage = "https://pypi.python.org/pypi/testtools";
36     license = lib.licenses.mit;
37   };