depot/third_party/nixpkgs/pkgs/development/python-modules/palettable/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

36 lines
781 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "palettable";
version = "3.3.3";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-CU3X2aX8HMpIVHc+XB/GoxWzO9WzqPRwZJKPrK8EkKg=";
};
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"palettable"
"palettable.matplotlib"
"palettable.tableau"
];
meta = with lib; {
description = "Library of color palettes";
homepage = "https://jiffyclub.github.io/palettable/";
changelog = "https://github.com/jiffyclub/palettable/blob/v${version}/CHANGELOG.rst";
license = licenses.mit;
maintainers = with maintainers; [ psyanticy ];
};
}