1{ lib
2, buildPythonPackage
3, fetchurl
4, sphinx
5, tracing
6, ttystatus
7, cliapp
8}:
9
10buildPythonPackage rec {
11 pname = "larch";
12 version = "1.20131130";
13
14 src = fetchurl {
15 url = "http://code.liw.fi/debian/pool/main/p/python-larch/python-larch_${version}.orig.tar.gz";
16 sha256 = "1hfanp9l6yc5348i3f5sb8c5s4r43y382hflnbl6cnz4pm8yh5r7";
17 };
18
19 buildInputs = [ sphinx ];
20 propagatedBuildInputs = [ tracing ttystatus cliapp ];
21
22 # error: invalid command 'test'
23 doCheck = false;
24
25 meta = with lib; {
26 homepage = "https://liw.fi/larch/";
27 description = "Python B-tree library";
28 license = licenses.gpl3;
29 maintainers = [];
30 };
31
32}