python-material-color-utilities: remove package

This commit is contained in:
Gabriel Arazas 2023-04-22 17:14:20 +08:00
parent 67dfd684dd
commit 20607cfd9f
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
2 changed files with 0 additions and 21 deletions

View File

@ -62,7 +62,6 @@ 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

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