linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / palettable / default.nix
blobdce72bb74bb5951da66b7a2efd4cd02efbfba197
1 { lib, buildPythonPackage, fetchPypi, pytest }:
3 buildPythonPackage rec {
4   pname = "palettable";
5   version = "3.3.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "72feca71cf7d79830cd6d9181b02edf227b867d503bec953cf9fa91bf44896bd";
10   };
12   checkInputs = [ pytest ];
14   checkPhase = ''
15     pytest
16   '';
18   meta = with lib; {
19     description = "A library of color palettes";
20     homepage = "https://jiffyclub.github.io/palettable/";
21     license = licenses.mit;
22     maintainers = with maintainers; [ psyanticy ];
23   };