1{ lib
2, buildPythonPackage
3, docutils
4, fetchFromGitHub
5, isPy27
6, nose
7, pytest
8}:
9
10buildPythonPackage rec {
11 version = "1.0.10";
12 pname = "python_toolbox";
13 disabled = isPy27;
14
15 src = fetchFromGitHub {
16 owner = "cool-RR";
17 repo = pname;
18 rev = version;
19 sha256 = "1hpls1hwisdjx1g15cq052bdn9fvh43r120llws8bvgvj9ivnaha";
20 };
21
22 checkInputs = [
23 docutils
24 pytest
25 ];
26
27 meta = with lib; {
28 description = "Tools for testing PySnooper";
29 homepage = "https://github.com/cool-RR/python_toolbox";
30 license = licenses.mit;
31 maintainers = with maintainers; [ seqizz ];
32 };
33}