summary refs log tree commit diff
path: root/pkgs/development/python-modules/webcolors/default.nix
blob: c23bffaf142fa507c5eb8e5e564bfdcec09b98eb (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
{ lib
, buildPythonPackage
, fetchPypi
, python
}:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "e47e68644d41c0b1f1e4d939cfe4039bdf1ab31234df63c7a4f59d4766487206";
  };

  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;
  };
}