mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
material-color-utilities-python: init at 0.1.5
This commit is contained in:
parent
216f9f413d
commit
b34aec224d
@ -0,0 +1,28 @@
|
||||
{ stdenv, lib, buildPythonPackage, fetchPypi, pillow, regex }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "material-color-utilities-python";
|
||||
version = "0.1.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-PG8C585wWViFRHve83z3b9NijHyV+iGY2BdMJpyVH64=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pillow
|
||||
regex
|
||||
];
|
||||
|
||||
# No tests implemented.
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "material_color_utilities_python" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://pypi.org/project/material_color_utilities_python";
|
||||
description = "Python port of material_color_utilities used for Material You colors";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ foo-dogsquared ];
|
||||
};
|
||||
}
|
@ -5832,6 +5832,8 @@ self: super: with self; {
|
||||
|
||||
mat2 = callPackage ../development/python-modules/mat2 { };
|
||||
|
||||
material-color-utilities = callPackage ../development/python-modules/material-color-utilities { };
|
||||
|
||||
matchpy = callPackage ../development/python-modules/matchpy { };
|
||||
|
||||
mathlibtools = callPackage ../development/python-modules/mathlibtools { };
|
||||
|
Loading…
Reference in New Issue
Block a user