Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / webcolors / default.nix
blob7ee91e7ea2b4dc71b94039f682ca4f2752189bcb
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , unittestCheckHook
6 , setuptools
7 }:
9 buildPythonPackage rec {
10   pname = "webcolors";
11   version = "1.13";
12   format = "pyproject";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-wiW2dMg/qSO+k9I1MwzgMANz0CiFzvIyOIE7DVZoMEo=";
19   };
21   nativeBuildInputs = [
22     setuptools
23   ];
25   nativeCheckInputs = [ unittestCheckHook ];
27   unittestFlagsArray = [ "-s" "tests" ];
29   pythonImportsCheck = [
30     "webcolors"
31   ];
33   meta = with lib; {
34     description = "Library for working with color names/values defined by the HTML and CSS specifications";
35     homepage = "https://github.com/ubernostrum/webcolors";
36     license = licenses.bsd3;
37     maintainers = with maintainers; [ ];
38   };