ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / testtools / default.nix
blob430d0374ef20d1d82a59d784495d3a200e113f73
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonRelaxDepsHook
5 , pbr
6 , python-mimeparse
7 , extras
8 , unittest2
9 , traceback2
10 , testscenarios
13 buildPythonPackage rec {
14   pname = "testtools";
15   version = "2.5.0";
17   src = fetchPypi {
18     inherit pname version;
19     sha256 = "57c13433d94f9ffde3be6534177d10fb0c1507cc499319128958ca91a65cb23f";
20   };
22   propagatedBuildInputs = [ pbr python-mimeparse extras ];
23   buildInputs = [ traceback2 ];
24   nativeBuildInputs = [ pythonRelaxDepsHook ];
26   # testscenarios has a circular dependency on testtools
27   doCheck = false;
28   checkInputs = [ testscenarios ];
30   pythonRemoveDeps = [ "fixtures" ];
32   meta = {
33     description = "A set of extensions to the Python standard library's unit testing framework";
34     homepage = "https://pypi.python.org/pypi/testtools";
35     license = lib.licenses.mit;
36   };