mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
pythonPackages.teletype: init at 1.1.0 (#130871)
This commit is contained in:
parent
5d55727b30
commit
4711f4b61e
22
pkgs/development/python-modules/teletype/default.nix
Normal file
22
pkgs/development/python-modules/teletype/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue