Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / ttystatus / default.nix
blobf32045ce9cdef5a7e36ad5013fb12935842bbd7e
1 { lib
2 , buildPythonPackage
3 , fetchurl
4 , sphinx
5 , isPy3k
6 }:
8 buildPythonPackage rec {
9   pname = "ttystatus";
10   version = "0.23";
11   disabled = isPy3k;
13   src = fetchurl {
14     url = "http://code.liw.fi/debian/pool/main/p/python-ttystatus/python-ttystatus_${version}.orig.tar.gz";
15     sha256 = "0ymimviyjyh2iizqilg88g4p26f5vpq1zm3cvg7dr7q4y3gmik8y";
16   };
18   buildInputs = [ sphinx ];
20   # error: invalid command 'test'
21   doCheck = false;
23   meta = with lib; {
24     homepage = "https://liw.fi/ttystatus/";
25     description = "Progress and status updates on terminals for Python";
26     license = licenses.gpl3;
27     maintainers = [];
28   };