Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / larch / default.nix
blob630430b8270b7ed7a93f200979f658ff0333fa22
1 { lib
2 , buildPythonPackage
3 , fetchurl
4 , sphinx
5 , tracing
6 , ttystatus
7 , cliapp
8 }:
10 buildPythonPackage rec {
11   pname = "larch";
12   version = "1.20131130";
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   };
19   buildInputs = [ sphinx ];
20   propagatedBuildInputs = [ tracing ttystatus cliapp ];
22   # error: invalid command 'test'
23   doCheck = false;
25   meta = with lib; {
26     homepage = "https://liw.fi/larch/";
27     description = "Python B-tree library";
28     license = licenses.gpl3;
29     maintainers = [];
30   };