ueberzug: init at 18.1.5
This commit is contained in:
parent
0b85ab2686
commit
debc253bf3
25
pkgs/development/python-modules/ueberzug/default.nix
Normal file
25
pkgs/development/python-modules/ueberzug/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user