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

buildPythonPackage rec {
  pname = "larch";
  version = "1.20131130";

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

  buildInputs = [ sphinx ];
  propagatedBuildInputs = [ tracing ttystatus cliapp ];

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

  meta = with stdenv.lib; {
    homepage = "http://liw.fi/larch/";
    description = "Python B-tree library";
    license = licenses.gpl3;
    maintainers = [];
  };

}