Merge pull request #60236 from monsieurp/new-pydf

pydf: init at 12
This commit is contained in:
Graham Christensen 2019-04-25 20:27:52 -04:00 committed by GitHub
commit 06d90aace2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 25 additions and 0 deletions

View File

@ -3218,6 +3218,11 @@
github = "mogria";
name = "Mogria";
};
monsieurp = {
email = "monsieurp@gentoo.org";
github = "monsieurp";
name = "Patrice Clement";
};
montag451 = {
email = "montag451@laposte.net";
github = "montag451";

View File

@ -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 ];
};
}

View File

@ -5234,6 +5234,8 @@ in
pydb = callPackage ../development/tools/pydb { };
pydf = callPackage ../applications/misc/pydf { };
pygmentex = callPackage ../tools/typesetting/pygmentex { };
pythonIRClib = pythonPackages.pythonIRClib;