My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/teletype/default.nix

32 lines
606 B

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "teletype";
version = "1.3.4";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-uBppM4w9GlMgYqKFGw1Rcjvq+mnU04K3E74jCgK9YYo=";
};
# 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 ];
};
}