summary refs log tree commit diff
path: root/pkgs/development/python-modules/pysnooper/default.nix
blob: bb41a4d185569079a2db0ded53f51391a45a1727 (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
33
{ lib
, buildPythonPackage
, fetchPypi
, python-toolbox
, pytest
, isPy27
}:

buildPythonPackage rec {
  version = "0.3.0";
  pname = "pysnooper";

  src = fetchPypi {
    inherit version;
    pname = "PySnooper";
    sha256 = "14vcxrzfmfhsmdck1cb56a6lbfga15qfhlkap9mh47fgspcq8xkx";
  };

  # test dependency python-toolbox fails with py27
  doCheck = !isPy27;

  checkInputs = [
    python-toolbox
    pytest
  ];

  meta = with lib; {
    description = "A poor man's debugger for Python";
    homepage = https://github.com/cool-RR/PySnooper;
    license = licenses.mit;
    maintainers = with maintainers; [ seqizz ];
  };
}