pythonPackages.teletype: init at 1.1.0 (#130871)

This commit is contained in:
urlordjames 2021-07-20 22:31:06 -04:00 committed by GitHub
parent 5d55727b30
commit 4711f4b61e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ buildPythonPackage, fetchPypi, lib }:
buildPythonPackage rec {
pname = "teletype";
version = "1.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "02mg0qmdf7hljq6jw1hwaid3hvkf70dfxgrxmpqybaxrph5pfg1y";
};
# no tests
doCheck = false;
pythonImportsCheck = [ "teletype" ];
meta = with lib; {
description = "A high-level cross platform tty library";
homepage = "https://github.com/jkwill87/teletype";
license = licenses.mit;
maintainers = with maintainers; [ urlordjames ];
};
}

View file

@ -8488,6 +8488,8 @@ in {
telethon-session-sqlalchemy = callPackage ../development/python-modules/telethon-session-sqlalchemy { };
teletype = callPackage ../development/python-modules/teletype { };
telfhash = callPackage ../development/python-modules/telfhash { };
tempita = callPackage ../development/python-modules/tempita { };