summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-toolbox/default.nix
blob: 5170c5a8a0904be4eaff2efcb8236eb631f09901 (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
{ lib
, buildPythonPackage
, docutils
, fetchFromGitHub
, isPy27
, nose
}:

buildPythonPackage rec {
  version = "0.9.4";
  pname = "python_toolbox";
  disabled = isPy27;

  src = fetchFromGitHub {
    owner = "cool-RR";
    repo = pname;
    rev = version;
    sha256 = "1qy2sfqfrkgxixmd22v5lkrdykdfiymsd2s3xa7ndlvg084cgj6r";
  };

  checkInputs = [
    docutils
    nose
  ];

  meta = with lib; {
    description = "Tools for testing PySnooper";
    homepage = https://github.com/cool-RR/python_toolbox;
    license = licenses.mit;
    maintainers = with maintainers; [ seqizz ];
  };
}