12 buildPythonPackage rec {
17 inherit pname version;
18 sha256 = "sha256-KLZeFMDy0+y7+19VydzeXk+qgKwWo3qCOQmh/jy8swo=";
21 propagatedBuildInputs = [ pbr python-mimeparse extras ];
22 buildInputs = [ traceback2 ];
23 nativeBuildInputs = [ pythonRelaxDepsHook ];
25 # testscenarios has a circular dependency on testtools
27 nativeCheckInputs = [ testscenarios ];
29 pythonRemoveDeps = [ "fixtures" ];
32 description = "A set of extensions to the Python standard library's unit testing framework";
33 homepage = "https://pypi.python.org/pypi/testtools";
34 license = lib.licenses.mit;