blob: a5315b032689e5e5a2945e2ce32ac2e49b07b19d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "teletype";
version = "1.3.4";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-uBppM4w9GlMgYqKFGw1Rcjvq+mnU04K3E74jCgK9YYo=";
};
nativeBuildInputs = [ setuptools ];
# no tests
doCheck = false;
pythonImportsCheck = [ "teletype" ];
meta = {
description = "High-level cross platform tty library";
homepage = "https://github.com/jkwill87/teletype";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ urlordjames ];
};
}
|