summary refs log tree commit diff
path: root/pkgs/development/python-modules/wcag-contrast-ratio/default.nix
blob: 1a906934a5318494cbaa2d0c97514cbc17dff3dd (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
29
30
31
32
33
34
{ lib
, buildPythonPackage
, fetchPypi
, hypothesis
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "wcag-contrast-ratio";
  version = "0.9";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-aRkrjlwKfQ3F/xGH7rPjmBQWM6S95RxpyH9Y/oftNhw=";
  };

  nativeCheckInputs = [
    hypothesis
    pytestCheckHook
  ];

  pytestFlagsArray = [
    "test.py"
  ];

  pythonImportsCheck = [ "wcag_contrast_ratio" ];

  meta = with lib; {
    description = "Library for computing contrast ratios, as required by WCAG 2.0";
    homepage = "https://github.com/gsnedders/wcag-contrast-ratio";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}