2022-08-20 05:02:19 +00:00
|
|
|
{ stdenv, lib, python3Packages, ... }:
|
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "material-color-utilities-python";
|
2022-09-20 08:52:38 +00:00
|
|
|
version = "0.1.5";
|
2022-08-20 05:02:19 +00:00
|
|
|
|
|
|
|
src = python3Packages.fetchPypi {
|
|
|
|
inherit pname version;
|
2022-09-20 08:52:38 +00:00
|
|
|
sha256 = "sha256-PG8C585wWViFRHve83z3b9NijHyV+iGY2BdMJpyVH64=";
|
2022-08-20 05:02:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
pillow
|
|
|
|
regex
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python port of material-color-utilities used for Material You colors";
|
|
|
|
};
|
|
|
|
}
|