python3.pkgs.coloraide: init at 4.7.2
This commit is contained in:
@@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user