mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
57 lines
1.1 KiB
Nix
57 lines
1.1 KiB
Nix
{ lib
|
|
, APScheduler
|
|
, buildPythonPackage
|
|
, cachetools
|
|
, certifi
|
|
, decorator
|
|
, fetchPypi
|
|
, future
|
|
, tornado
|
|
, urllib3
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-telegram-bot";
|
|
version = "13.7";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-JN91RZ4zW5a6/6aZFnn4RL1CaXivWmnKQZoKxDpAYCw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
APScheduler
|
|
cachetools
|
|
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" \
|
|
--replace "cachetools==4.2.2" "cachetools"
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|