1{ lib
2, buildPythonPackage
3, fetchurl
4, sphinx
5, isPy3k
6}:
7
8buildPythonPackage rec {
9 pname = "ttystatus";
10 version = "0.23";
11 disabled = isPy3k;
12
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 };
17
18 buildInputs = [ sphinx ];
19
20 # error: invalid command 'test'
21 doCheck = false;
22
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 };
29
30}