My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/ansi/default.nix

33 lines
600 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "ansi";
version = "0.3.6";
format = "pyproject";
src = fetchFromGitHub {
owner = "tehmaze";
repo = pname;
rev = "${pname}-${version}";
hash = "sha256-2gu2Dba3LOjMhbCCZrBqzlOor5KqDYThhe8OP8J3O2M=";
};
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"ansi.colour"
"ansi.color"
];
meta = with lib; {
description = "ANSI cursor movement and graphics";
homepage = "https://github.com/tehmaze/ansi/";
license = licenses.mit;
};
}