456cea78a8
GitOrigin-RevId: 88226ea038e538e09c272a7c56ba73c3f5eed57f
20 lines
564 B
Nix
20 lines
564 B
Nix
{ lib, buildPythonPackage, fetchPypi, requests }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyTelegramBotAPI";
|
|
version = "3.8.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "cf83c652b88b4b1535a306a9b0c2f34bf6c390cebb9553ef34369e6290fc9496";
|
|
};
|
|
|
|
propagatedBuildInputs = [ requests ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/eternnoir/pyTelegramBotAPI";
|
|
description = "A simple, but extensible Python implementation for the Telegram Bot API";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ das_j ];
|
|
};
|
|
}
|