mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
21 lines
564 B
Nix
21 lines
564 B
Nix
{ lib, buildPythonPackage, fetchPypi, requests }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyTelegramBotAPI";
|
|
version = "4.1.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "cc8011ca05301653f2e5c2d02eadff0e882b611841a76f9e5b911994899df49e";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|