pythonPackages.ttystatus: refactor move to python-modules
This commit is contained in:
parent
7ab3b62486
commit
9e52a73527
@ -21,7 +21,7 @@ buildPythonPackage rec {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://liw.fi/tracing/;
|
||||
description = "Python debug logging helper";
|
||||
license = licenses.gpl30;
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ rickynils ];
|
||||
};
|
||||
|
||||
|
30
pkgs/development/python-modules/ttystatus/default.nix
Normal file
30
pkgs/development/python-modules/ttystatus/default.nix
Normal file
@ -0,0 +1,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 = http://liw.fi/ttystatus/;
|
||||
description = "Progress and status updates on terminals for Python";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ rickynils ];
|
||||
};
|
||||
|
||||
}
|
@ -4262,27 +4262,7 @@ in {
|
||||
|
||||
translationstring = callPackage ../development/python-modules/translationstring { };
|
||||
|
||||
ttystatus = buildPythonPackage rec {
|
||||
name = "ttystatus-${version}";
|
||||
version = "0.23";
|
||||
disabled = isPy3k;
|
||||
|
||||
src = pkgs.fetchurl rec {
|
||||
url = "http://code.liw.fi/debian/pool/main/p/python-ttystatus/python-ttystatus_${version}.orig.tar.gz";
|
||||
sha256 = "0ymimviyjyh2iizqilg88g4p26f5vpq1zm3cvg7dr7q4y3gmik8y";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ sphinx ];
|
||||
|
||||
# error: invalid command 'test'
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = http://liw.fi/ttystatus/;
|
||||
description = "Progress and status updates on terminals for Python";
|
||||
maintainers = with maintainers; [ rickynils ];
|
||||
};
|
||||
};
|
||||
ttystatus = callPackage ../development/python-modules/ttystatus { };
|
||||
|
||||
larch = buildPythonPackage rec {
|
||||
name = "larch-${version}";
|
||||
|
Loading…
Reference in New Issue
Block a user