mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
31 lines
632 B
Nix
31 lines
632 B
Nix
{ lib
|
|
, 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 = [];
|
|
};
|
|
|
|
}
|