diff options
Diffstat (limited to 'pkgs/development/python-modules/telegram/default.nix')
-rw-r--r-- | pkgs/development/python-modules/telegram/default.nix | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/pkgs/development/python-modules/telegram/default.nix b/pkgs/development/python-modules/telegram/default.nix deleted file mode 100644 index d07baaa4169f..000000000000 --- a/pkgs/development/python-modules/telegram/default.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ lib -, buildPythonPackage -, fetchPypi -}: - -buildPythonPackage rec { - pname = "telegram"; - version = "0.0.1"; - format = "setuptools"; - - src = fetchPypi { - inherit pname version; - sha256 = "1495l2ml8mg120wfvqhikqkfczhwwaby40vdmsz8v2l69jps01fl"; - }; - - meta = with lib; { - homepage = "https://github.com/liluo/telegram"; - description = "Telegram APIs"; - license = licenses.mit; - }; - -} |