python-material-color-utilities: init at 0.1.3

This commit is contained in:
Gabriel Arazas 2022-08-20 13:02:19 +08:00
parent d70f3b3e69
commit d72ba34265
2 changed files with 21 additions and 0 deletions

View File

@ -54,6 +54,7 @@ let
pop-launcher-plugin-duckduckgo-bangs =
callPackage ./pop-launcher-plugin-duckduckgo-bangs.nix { };
pop-launcher-plugin-jetbrains = callPackage ./pop-launcher-plugin-jetbrains { };
python-material-color-utilities = callPackage ./python-material-color-utilities { };
swh = callPackage ./software-heritage { python3Packages = python310Packages; };
text-engine = callPackage ./text-engine.nix { };
tic-80 = callPackage ./tic-80 { };

View File

@ -0,0 +1,20 @@
{ stdenv, lib, python3Packages, ... }:
python3Packages.buildPythonApplication rec {
pname = "material-color-utilities-python";
version = "0.1.3";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "sha256-3AWZICW0Cr/hCjjBpW/ZCyASG+sRR9eK3mwEa1JeZRY=";
};
propagatedBuildInputs = with python3Packages; [
pillow
regex
];
meta = with lib; {
description = "Python port of material-color-utilities used for Material You colors";
};
}