python3.pkgs.coloraide: init at 4.7.2

This commit is contained in:
Rebecca Turner
2025-08-21 21:27:01 -07:00
parent e2265f6540
commit f7cb3d5cb7
2 changed files with 43 additions and 0 deletions
@@ -0,0 +1,41 @@
{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
typing-extensions,
}:
let
pname = "coloraide";
version = "4.7.2";
in
buildPythonPackage {
inherit pname version;
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-fomOKtF3hzgJvR9f2x2QYYrYdASf6tlS/0Rw0VdmbUs=";
};
build-system = [
hatchling
];
dependencies = [
typing-extensions
];
pythonImportsCheck = [
"coloraide"
];
meta = {
description = "A color library for Python";
homepage = "https://pypi.org/project/coloraide/";
license = lib.licenses.mit;
maintainers = [
lib.maintainers._9999years
];
};
}
+2
View File
@@ -2801,6 +2801,8 @@ self: super: with self; {
color-parser-py = callPackage ../development/python-modules/color-parser-py { };
coloraide = callPackage ../development/python-modules/coloraide { };
colorama = callPackage ../development/python-modules/colorama { };
colorcet = callPackage ../development/python-modules/colorcet { };