summary refs log tree commit diff
path: root/pkgs/development/python-modules/webcolors/default.nix
blob: e0e2f97501be3b3cb58c9a7032828fc9b7f289a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib
, buildPythonPackage
, fetchPypi
, python
, six
}:

buildPythonPackage rec {
  pname = "webcolors";
  version = "1.10";

  src = fetchPypi {
    inherit pname version;
    sha256 = "7b11194c414dcf4b9bd8fb5ceaafc9da183b27430883c62f620589eb79b91b6e";
  };

  propagatedBuildInputs = [ six ];

  checkPhase = ''
    ${python.interpreter} -m unittest discover -s tests
  '';

  meta = {
    description = "Library for working with color names/values defined by the HTML and CSS specifications";
    homepage = "https://bitbucket.org/ubernostrum/webcolors/overview/";
    license = lib.licenses.bsd3;
  };
}