nixpkgs/pkgs/development/python-modules/python-telegram-bot/default.nix

43 lines
953 B
Nix
Raw Normal View History

{ lib
, fetchPypi
, buildPythonPackage
, certifi
, decorator
, future
, urllib3
, tornado
, pytest
, isPy3k
}:
2018-01-18 16:22:53 +00:00
buildPythonPackage rec {
pname = "python-telegram-bot";
version = "13.0";
disabled = !isPy3k;
2018-01-18 16:22:53 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "ca78a41626d728a8f51affa792270e210fa503ed298d395bed2bd1281842dca3";
2018-01-18 16:22:53 +00:00
};
checkInputs = [ pytest ];
propagatedBuildInputs = [ certifi future urllib3 tornado decorator ];
# --with-upstream-urllib3 is not working properly
postPatch = ''
rm -rf telegram/vendor
'';
setupPyGlobalFlags = "--with-upstream-urllib3";
# tests not included with release
doCheck = false;
pythonImportsCheck = [ "telegram" ];
2018-01-18 16:22:53 +00:00
meta = with lib; {
2018-01-18 16:22:53 +00:00
description = "This library provides a pure Python interface for the Telegram Bot API.";
homepage = "https://python-telegram-bot.org";
2018-01-18 16:22:53 +00:00
license = licenses.lgpl3;
maintainers = with maintainers; [ veprbl pingiun ];
2018-01-18 16:22:53 +00:00
};
}