nixpkgs/pkgs/development/python-modules/ansicolor/default.nix
Fabian Affolter 7dbcdd7b46 python312Packages.ansicolor: refactor
- enable tests
- add pythonImportsCheck
- format with nixfmt
2024-04-14 16:37:13 +02:00

37 lines
779 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "ansicolor";
version = "0.3.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "numerodix";
repo = "ansicolor";
rev = "refs/tags/${version}";
hash = "sha256-a/BAU42AfMR8C94GwmrLkvSvolFEjV0LbDypvS9UuOA=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "ansicolor" ];
meta = with lib; {
description = "A library to produce ansi color output and colored highlighting and diffing";
homepage = "https://github.com/numerodix/ansicolor/";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}