about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/ttystatus/default.nix
blob: 24eb10637078a33ebbf98d3886909492b8f0f536 (plain) (blame)
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
{ lib, 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 lib; {
    homepage = "https://liw.fi/ttystatus/";
    description = "Progress and status updates on terminals for Python";
    license = licenses.gpl3;
    maintainers = [];
  };

}