python312Packages.asciimatics: refactor

- enable tests
This commit is contained in:
Fabian Affolter 2024-03-29 11:39:53 +01:00
parent 3c9e0924c4
commit 716d601b9d
1 changed files with 12 additions and 16 deletions

View File

@ -1,45 +1,40 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools-scm
, pyfiglet
, pillow
, pyfiglet
, pytestCheckHook
, pythonOlder
, setuptools-scm
, wcwidth
, future
, mock
, nose
}:
buildPythonPackage rec {
pname = "asciimatics";
version = "1.15.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-z905gEJydRnYtz5iuO+CwL7P7U60IImcO5bJjQuWgho=";
};
nativeBuildInputs = [
build-system = [
setuptools-scm
];
propagatedBuildInputs = [
dependencies = [
pyfiglet
pillow
wcwidth
future
];
nativeCheckInputs = [
mock
nose
pytestCheckHook
];
# tests require a pty emulator
# which is too complicated to setup here
doCheck = false;
pythonImportsCheck = [
"asciimatics.effects"
"asciimatics.renderers"
@ -48,8 +43,9 @@ buildPythonPackage rec {
];
meta = with lib; {
description = "Helps to create full-screen text UIs (from interactive forms to ASCII animations) on any platform";
description = "Module to create full-screen text UIs (from interactive forms to ASCII animations)";
homepage = "https://github.com/peterbrittain/asciimatics";
changelog = "https://github.com/peterbrittain/asciimatics/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ cmcdragonkai ];
};