Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 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.5"; 8 9 disabled = isPy27; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "1rj864sdn1975v59i8j3cfa9hni1hacq0z2b8m7wib0da9apygby"; 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}