mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
1875033648
Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com> Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
47 lines
1 KiB
Nix
47 lines
1 KiB
Nix
{ lib
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
, certifi
|
|
, decorator
|
|
, future
|
|
, urllib3
|
|
, tornado
|
|
, pytest
|
|
, APScheduler
|
|
, isPy3k
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-telegram-bot";
|
|
version = "13.3";
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-dw1sGfdeUw3n9qh4TsBpRdqEvNI0SnKTK4wqBaeM1CE=";
|
|
};
|
|
|
|
checkInputs = [ pytest ];
|
|
propagatedBuildInputs = [ certifi future urllib3 tornado decorator APScheduler ];
|
|
|
|
# --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 = "This library provides a pure Python interface for the Telegram Bot API.";
|
|
homepage = "https://python-telegram-bot.org";
|
|
license = licenses.lgpl3Only;
|
|
maintainers = with maintainers; [ veprbl pingiun ];
|
|
};
|
|
}
|