about summary refs log tree commit diff
path: root/pkgs/development/python-modules/tracing/default.nix
blob: 843f26508ae4965bf68a112cd6592e7e037d15e6 (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
{ stdenv
, buildPythonPackage
, fetchurl
, sphinx
}:

buildPythonPackage rec {
  pname = "tracing";
  version = "0.8";

  src = fetchurl {
    url = "http://code.liw.fi/debian/pool/main/p/python-tracing/python-tracing_${version}.orig.tar.gz";
    sha256 = "1l4ybj5rvrrcxf8csyq7qx52izybd502pmx70zxp46gxqm60d2l0";
  };

  buildInputs = [ sphinx ];

  # error: invalid command 'test'
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = http://liw.fi/tracing/;
    description = "Python debug logging helper";
    license = licenses.gpl3;
    maintainers = with maintainers; [ rickynils ];
  };

}