summary refs log tree commit diff
path: root/pkgs/development/python-modules/teletype/default.nix
blob: c3878bf3c877912625ee2f416a98aa8199287ca5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 ];
  };
}