Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 20 lines 564 B view raw
1{ lib, buildPythonPackage, fetchPypi, requests }: 2 3buildPythonPackage rec { 4 pname = "pyTelegramBotAPI"; 5 version = "3.7.6"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "859136cbd50e99922e1ea495d4ebe8235b2cb10fe419a5421f28855249db4278"; 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}