diff options
| -rw-r--r-- | pkgs/material-color-utilities.nix | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/pkgs/material-color-utilities.nix b/pkgs/material-color-utilities.nix index 0bbb4f2..79fc1db 100644 --- a/pkgs/material-color-utilities.nix +++ b/pkgs/material-color-utilities.nix @@ -10,5 +10,14 @@ python3Packages.buildPythonPackage rec { inherit version; sha256 = "sha256-PG8C585wWViFRHve83z3b9NijHyV+iGY2BdMJpyVH64="; }; - propagatedBuildInputs = with python3Packages; [pillow regex poetry-core]; + + nativeBuildInputs = with python3Packages; [poetry-core]; + propagatedBuildInputs = with python3Packages; [pillow regex]; + + meta = with lib; { + description = "Python port of material-color-utilities used for Material You colors"; + license = licenses.asl20; + maintainers = with maintainers; [getchoo]; + platforms = platforms.all; + }; } |
