Unverified Commit fe47020e authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #299960 from fabaff/asciimatics-refactor

python312Packages.asciimatics: refactor
parents 8076f327 716d601b
Loading
Loading
Loading
Loading
+12 −16
Original line number Diff line number Diff line
{ 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 ];
  };