pydf: init at 12
This commit is contained in:
parent
e924d61ddf
commit
4eaada7e22
|
@ -0,0 +1,18 @@
|
||||||
|
{ stdenv, python3Packages }:
|
||||||
|
|
||||||
|
python3Packages.buildPythonPackage rec {
|
||||||
|
pname = "pydf";
|
||||||
|
version = "12";
|
||||||
|
|
||||||
|
src = python3Packages.fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "7f47a7c3abfceb1ac04fc009ded538df1ae449c31203962a1471a4eb3bf21439";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "colourised df(1)-clone";
|
||||||
|
homepage = http://kassiopeia.juls.savba.sk/~garabik/software/pydf/;
|
||||||
|
license = licenses.publicDomain;
|
||||||
|
maintainers = with maintainers; [ monsieurp ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -5234,6 +5234,8 @@ in
|
||||||
|
|
||||||
pydb = callPackage ../development/tools/pydb { };
|
pydb = callPackage ../development/tools/pydb { };
|
||||||
|
|
||||||
|
pydf = callPackage ../applications/misc/pydf { };
|
||||||
|
|
||||||
pygmentex = callPackage ../tools/typesetting/pygmentex { };
|
pygmentex = callPackage ../tools/typesetting/pygmentex { };
|
||||||
|
|
||||||
pythonIRClib = pythonPackages.pythonIRClib;
|
pythonIRClib = pythonPackages.pythonIRClib;
|
||||||
|
|
Loading…
Reference in New Issue