Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, python3Packages, }: 2 3python3Packages.buildPythonApplication rec { 4 pname = "addic7ed-cli"; 5 version = "1.4.6"; 6 7 src = python3Packages.fetchPypi { 8 inherit pname version; 9 sha256 = "182cpwxpdybsgl1nps850ysvvjbqlnx149kri4hxhgm58nqq0qf5"; 10 }; 11 12 propagatedBuildInputs = with python3Packages; [ 13 requests 14 pyquery 15 ]; 16 17 meta = with lib; { 18 description = "A commandline access to addic7ed subtitles"; 19 homepage = "https://github.com/BenoitZugmeyer/addic7ed-cli"; 20 license = licenses.mit; 21 maintainers = with maintainers; [ aethelz ]; 22 platforms = platforms.unix; 23 }; 24}