mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
19 lines
497 B
Nix
19 lines
497 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|