Merge pull request #167396 from r-ryantm/auto-update/python3.10-teletype
python310Packages.teletype: 1.3.2 -> 1.3.4
This commit is contained in:
commit
6f42cc4ef4
1 changed files with 13 additions and 4 deletions
|
@ -1,18 +1,27 @@
|
|||
{ buildPythonPackage, fetchPypi, lib }:
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "teletype";
|
||||
version = "1.3.2";
|
||||
version = "1.3.4";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-9q46a4ui2kgSUL/vImR02r4T9huwLFwd70AqGBNJNzs=";
|
||||
hash = "sha256-uBppM4w9GlMgYqKFGw1Rcjvq+mnU04K3E74jCgK9YYo=";
|
||||
};
|
||||
|
||||
# no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "teletype" ];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"teletype"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A high-level cross platform tty library";
|
||||
|
|
Loading…
Reference in a new issue