aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/tracing/default.nix
blob: 2d91ae6a13784b2a92181b770ce56d9972d8015a (plain)
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 = [];
  };

}