Loading pkgs/development/python-modules/asciimatics/default.nix +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" Loading @@ -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 ]; }; Loading Loading
pkgs/development/python-modules/asciimatics/default.nix +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" Loading @@ -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 ]; }; Loading