anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / nocaselist / default.nix
blobddb10ecf6fdc058d94c12ee1257c33ce1a0cbb75
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6   pythonOlder,
7   setuptools,
8   six,
9 }:
11 buildPythonPackage rec {
12   pname = "nocaselist";
13   version = "2.0.3";
14   pyproject = true;
16   disabled = pythonOlder "3.10";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-VXFNqEM/tIQ855dASXfkOF1ePfnkqgD33emD/YdBD+8=";
21   };
23   build-system = [ setuptools ];
25   dependencies = [ six ];
27   nativeCheckInputs = [ pytestCheckHook ];
29   pythonImportsCheck = [ "nocaselist" ];
31   meta = with lib; {
32     description = "Case-insensitive list for Python";
33     homepage = "https://github.com/pywbem/nocaselist";
34     changelog = "https://github.com/pywbem/nocaselist/blob/${version}/docs/changes.rst";
35     license = licenses.lgpl21Plus;
36     maintainers = with maintainers; [ freezeboy ];
37   };