ueberzug: init at 18.1.5

This commit is contained in:
Oleksii Filonenko 2019-12-10 17:15:14 +02:00 committed by Lassulus
parent 0b85ab2686
commit debc253bf3
3 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib, buildPythonPackage, fetchPypi, isPy27
, libX11, libXext
, attrs, docopt, pillow, psutil, xlib }:
buildPythonPackage rec {
pname = "ueberzug";
version = "18.1.5";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "1rj864sdn1975v59i8j3cfa9hni1hacq0z2b8m7wib0da9apygby";
};
buildInputs = [ libX11 libXext ];
propagatedBuildInputs = [ attrs docopt pillow psutil xlib ];
meta = with lib; {
homepage = "https://github.com/seebye/ueberzug";
description = "An alternative for w3mimgdisplay";
license = licenses.gpl3;
maintainers = with maintainers; [ filalex77 ];
};
}

View File

@ -21670,6 +21670,8 @@ in
twinkle = qt5.callPackage ../applications/networking/instant-messengers/twinkle { };
ueberzug = with python3Packages; toPythonApplication ueberzug;
umurmur = callPackage ../applications/networking/umurmur { };
udocker = pythonPackages.callPackage ../tools/virtualization/udocker { };

View File

@ -5362,6 +5362,10 @@ in {
uarray = callPackage ../development/python-modules/uarray { };
ueberzug = callPackage ../development/python-modules/ueberzug {
inherit (pkgs.xorg) libX11 libXext;
};
ukpostcodeparser = callPackage ../development/python-modules/ukpostcodeparser { };
umap-learn = callPackage ../development/python-modules/umap-learn { };