aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/ttystatus/default.nix
blob: a76a5f8df383b6bb074d18264d526f3901adad67 (plain)
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
{ stdenv
, buildPythonPackage
, fetchurl
, sphinx
, isPy3k
}:

buildPythonPackage rec {
  pname = "ttystatus";
  version = "0.23";
  disabled = isPy3k;

  src = fetchurl {
    url = "http://code.liw.fi/debian/pool/main/p/python-ttystatus/python-ttystatus_${version}.orig.tar.gz";
    sha256 = "0ymimviyjyh2iizqilg88g4p26f5vpq1zm3cvg7dr7q4y3gmik8y";
  };

  buildInputs = [ sphinx ];

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

  meta = with stdenv.lib; {
    homepage = "https://liw.fi/ttystatus/";
    description = "Progress and status updates on terminals for Python";
    license = licenses.gpl3;
    maintainers = [];
  };

}