mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
21 lines
484 B
Nix
21 lines
484 B
Nix
|
{ 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";
|
||
|
};
|
||
|
}
|