material-color-utilities-python: init at 0.1.5

This commit is contained in:
Gabriel Arazas 2022-09-01 13:10:13 +08:00 committed by Gabriel Arazas
parent 216f9f413d
commit b34aec224d
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenv, lib, buildPythonPackage, fetchPypi, pillow, regex }:
buildPythonPackage rec {
pname = "material-color-utilities-python";
version = "0.1.5";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-PG8C585wWViFRHve83z3b9NijHyV+iGY2BdMJpyVH64=";
};
propagatedBuildInputs = [
pillow
regex
];
# No tests implemented.
doCheck = false;
pythonImportsCheck = [ "material_color_utilities_python" ];
meta = with lib; {
homepage = "https://pypi.org/project/material_color_utilities_python";
description = "Python port of material_color_utilities used for Material You colors";
license = licenses.asl20;
maintainers = with maintainers; [ foo-dogsquared ];
};
}

View file

@ -5832,6 +5832,8 @@ self: super: with self; {
mat2 = callPackage ../development/python-modules/mat2 { };
material-color-utilities = callPackage ../development/python-modules/material-color-utilities { };
matchpy = callPackage ../development/python-modules/matchpy { };
mathlibtools = callPackage ../development/python-modules/mathlibtools { };