depot/third_party/nixpkgs/pkgs/development/python-modules/python-telegram-bot/default.nix
Default email 1a0302a145 Project import generated by Copybara.
GitOrigin-RevId: 311ceed827f531f88f46222920cd1ebb2c101f73
2021-04-12 20:23:04 +02:00

52 lines
1 KiB
Nix

{ lib
, APScheduler
, buildPythonPackage
, certifi
, decorator
, fetchPypi
, future
, isPy3k
, tornado
, urllib3
}:
buildPythonPackage rec {
pname = "python-telegram-bot";
version = "13.4.1";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "141w3701jjl460702xddqvi3hswp24jnkl6cakvz2aqrmcyxq7sc";
};
propagatedBuildInputs = [
APScheduler
certifi
decorator
future
tornado
urllib3
];
# --with-upstream-urllib3 is not working properly
postPatch = ''
rm -r telegram/vendor
substituteInPlace requirements.txt \
--replace 'APScheduler==3.6.3' 'APScheduler'
'';
setupPyGlobalFlags = "--with-upstream-urllib3";
# tests not included with release
doCheck = false;
pythonImportsCheck = [ "telegram" ];
meta = with lib; {
description = "Python library to interface with the Telegram Bot API";
homepage = "https://python-telegram-bot.org";
license = licenses.lgpl3Only;
maintainers = with maintainers; [ veprbl pingiun ];
};
}