mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
31 lines
639 B
Nix
31 lines
639 B
Nix
{ 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 = http://liw.fi/ttystatus/;
|
|
description = "Progress and status updates on terminals for Python";
|
|
license = licenses.gpl3;
|
|
maintainers = [];
|
|
};
|
|
|
|
}
|