Loading pkgs/development/python-modules/ansi2image/default.nix 0 → 100644 +48 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , colorama , fetchFromGitHub , pillow , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "ansi2image"; version = "0.1.4"; format = "setuptools"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "helviojunior"; repo = "ansi2image"; rev = "refs/tags/v${version}"; hash = "sha256-1sPEEWcOzesLQXSeMsUra8ZRSMAKzH6iisOgdhpxhKM="; }; propagatedBuildInputs = [ colorama pillow ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "ansi2image" ]; pytestFlagsArray = [ "tests/tests.py" ]; meta = with lib; { description = "Module to convert ANSI text to an image"; homepage = "https://github.com/helviojunior/ansi2image"; changelog = "https://github.com/helviojunior/ansi2image/blob/${version}/CHANGELOG"; license = licenses.gpl3Only; maintainers = with maintainers; [ fab ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -524,6 +524,8 @@ self: super: with self; { ansi2html = callPackage ../development/python-modules/ansi2html { }; ansi2image = callPackage ../development/python-modules/ansi2image { }; ansible = callPackage ../development/python-modules/ansible { }; ansible-compat = callPackage ../development/python-modules/ansible-compat { }; Loading Loading
pkgs/development/python-modules/ansi2image/default.nix 0 → 100644 +48 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , colorama , fetchFromGitHub , pillow , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "ansi2image"; version = "0.1.4"; format = "setuptools"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "helviojunior"; repo = "ansi2image"; rev = "refs/tags/v${version}"; hash = "sha256-1sPEEWcOzesLQXSeMsUra8ZRSMAKzH6iisOgdhpxhKM="; }; propagatedBuildInputs = [ colorama pillow ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "ansi2image" ]; pytestFlagsArray = [ "tests/tests.py" ]; meta = with lib; { description = "Module to convert ANSI text to an image"; homepage = "https://github.com/helviojunior/ansi2image"; changelog = "https://github.com/helviojunior/ansi2image/blob/${version}/CHANGELOG"; license = licenses.gpl3Only; maintainers = with maintainers; [ fab ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -524,6 +524,8 @@ self: super: with self; { ansi2html = callPackage ../development/python-modules/ansi2html { }; ansi2image = callPackage ../development/python-modules/ansi2image { }; ansible = callPackage ../development/python-modules/ansible { }; ansible-compat = callPackage ../development/python-modules/ansible-compat { }; Loading