mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 12:53:54 +00:00
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,18 +1,27 @@
|
|||||||
{ buildPythonPackage, fetchPypi, lib }:
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "teletype";
|
pname = "teletype";
|
||||||
version = "1.3.2";
|
version = "1.3.4";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "sha256-9q46a4ui2kgSUL/vImR02r4T9huwLFwd70AqGBNJNzs=";
|
hash = "sha256-uBppM4w9GlMgYqKFGw1Rcjvq+mnU04K3E74jCgK9YYo=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# no tests
|
# no tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
pythonImportsCheck = [ "teletype" ];
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"teletype"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A high-level cross platform tty library";
|
description = "A high-level cross platform tty library";
|
||||||
|
Loading…
Reference in New Issue
Block a user