Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 20 lines 552 B view raw
1{ lib, buildPythonPackage, fetchPypi, requests }: 2 3buildPythonPackage rec { 4 pname = "pyTelegramBotAPI"; 5 version = "3.6.7"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0spn3gjbppyl4b7kqnc8g30qss72dcb1d6ap2bizyam5wn591z8f"; 10 }; 11 12 propagatedBuildInputs = [ requests ]; 13 14 meta = with lib; { 15 homepage = "https://github.com/eternnoir/pyTelegramBotAPI"; 16 description = "A simple, but extensible Python implementation for the Telegram Bot API"; 17 license = licenses.gpl2; 18 maintainers = with maintainers; [ das_j ]; 19 }; 20}