python-telegram-bot: init at 9.0.0
This commit is contained in:
parent
4dff3ee959
commit
5738da94f4
2 changed files with 23 additions and 0 deletions
|
@ -0,0 +1,21 @@
|
||||||
|
{ stdenv, fetchPypi, buildPythonPackage, isPy3k, certifi, future }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "python-telegram-bot";
|
||||||
|
version = "9.0.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0a5b4wfc6ms7kblynw2h3ygpww98kyz5n8iibqbdyykwx8xj7hzm";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ certifi future ];
|
||||||
|
doCheck = !isPy3k;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "This library provides a pure Python interface for the Telegram Bot API.";
|
||||||
|
homepage = https://python-telegram-bot.org;
|
||||||
|
license = licenses.lgpl3;
|
||||||
|
maintainers = with maintainers; [ veprbl ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -22203,6 +22203,8 @@ EOF
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
python-telegram-bot = callPackage ../development/python-modules/python-telegram-bot { };
|
||||||
|
|
||||||
irc = buildPythonPackage rec {
|
irc = buildPythonPackage rec {
|
||||||
name = "irc-${version}";
|
name = "irc-${version}";
|
||||||
version = "14.2.2";
|
version = "14.2.2";
|
||||||
|
|
Loading…
Reference in a new issue