Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.05 28 lines 613 B view raw
1{ lib 2, buildPythonPackage 3, fetchFromGitHub 4, isPyPy 5, livestreamer 6}: 7 8buildPythonPackage rec { 9 pname = "livestreamer-curses"; 10 version = "1.5.2"; 11 disabled = isPyPy; 12 13 src = fetchFromGitHub { 14 owner = "gapato"; 15 repo = "livestreamer-curses"; 16 rev = "v${version}"; 17 hash = "sha256-Pi0PIOUhMMAWft9ackB04IgF6DyPrXppNqyVjozIjN4="; 18 }; 19 20 propagatedBuildInputs = [ livestreamer ]; 21 22 meta = with lib; { 23 homepage = "https://github.com/gapato/livestreamer-curses"; 24 description = "Curses frontend for livestreamer"; 25 license = licenses.mit; 26 maintainers = with maintainers; [ ]; 27 }; 28}