mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
python-material-color-utilities: init at 0.1.3
This commit is contained in:
parent
d70f3b3e69
commit
d72ba34265
@ -54,6 +54,7 @@ let
|
|||||||
pop-launcher-plugin-duckduckgo-bangs =
|
pop-launcher-plugin-duckduckgo-bangs =
|
||||||
callPackage ./pop-launcher-plugin-duckduckgo-bangs.nix { };
|
callPackage ./pop-launcher-plugin-duckduckgo-bangs.nix { };
|
||||||
pop-launcher-plugin-jetbrains = callPackage ./pop-launcher-plugin-jetbrains { };
|
pop-launcher-plugin-jetbrains = callPackage ./pop-launcher-plugin-jetbrains { };
|
||||||
|
python-material-color-utilities = callPackage ./python-material-color-utilities { };
|
||||||
swh = callPackage ./software-heritage { python3Packages = python310Packages; };
|
swh = callPackage ./software-heritage { python3Packages = python310Packages; };
|
||||||
text-engine = callPackage ./text-engine.nix { };
|
text-engine = callPackage ./text-engine.nix { };
|
||||||
tic-80 = callPackage ./tic-80 { };
|
tic-80 = callPackage ./tic-80 { };
|
||||||
|
20
pkgs/python-material-color-utilities/default.nix
Normal file
20
pkgs/python-material-color-utilities/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user