nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.09 25 lines 634 B view raw
1{ lib, buildPythonPackage, fetchPypi, isPy27 2, libX11, libXext 3, attrs, docopt, pillow, psutil, xlib }: 4 5buildPythonPackage rec { 6 pname = "ueberzug"; 7 version = "18.1.6"; 8 9 disabled = isPy27; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "13a9q9rvkbsym5nrc1y2anhyx317vj1vi8k8kln8gin2yw311pyb"; 14 }; 15 16 buildInputs = [ libX11 libXext ]; 17 propagatedBuildInputs = [ attrs docopt pillow psutil xlib ]; 18 19 meta = with lib; { 20 homepage = "https://github.com/seebye/ueberzug"; 21 description = "An alternative for w3mimgdisplay"; 22 license = licenses.gpl3; 23 maintainers = with maintainers; [ filalex77 ]; 24 }; 25}