perlPackages.NetAsyncWebSocket: 0.13 -> 0.14 (#352432)
[NixPkgs.git] / pkgs / development / python-modules / webcolors / default.nix
blob4d24df46c21354714b4e7fdd29eef369de0b1ace
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   unittestCheckHook,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "webcolors";
12   version = "24.8.0";
13   pyproject = true;
15   disabled = pythonOlder "3.8";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-CLB68oagG80w1YOnrK32KVg9H3m/7yfdLCxcJjgXJ30=";
20   };
22   build-system = [ setuptools ];
24   nativeCheckInputs = [ unittestCheckHook ];
26   unittestFlagsArray = [
27     "-s"
28     "tests"
29   ];
31   pythonImportsCheck = [ "webcolors" ];
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 = [ ];
38   };