emacsPackages.lsp-bridge: 0-unstable-2025-01-11 -> 0-unstable-2025-01-22 (#376531)
[NixPkgs.git] / pkgs / development / python-modules / nocasedict / default.nix
blobf50c1df9902f6955fbb0c2282f2830fdb1ff6666
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6   pythonOlder,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "nocasedict";
12   version = "2.0.4";
13   pyproject = true;
15   disabled = pythonOlder "3.10";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-TKk09l31exDQ/KtfDDnp3MuTV3/58ivvmCZd2/EvivE=";
20   };
22   build-system = [ setuptools ];
24   nativeCheckInputs = [ pytestCheckHook ];
26   pythonImportsCheck = [ "nocasedict" ];
28   meta = with lib; {
29     description = "Case-insensitive ordered dictionary for Python";
30     homepage = "https://github.com/pywbem/nocasedict";
31     changelog = "https://github.com/pywbem/nocasedict/blob/${version}/docs/changes.rst";
32     license = licenses.lgpl21Plus;
33     maintainers = with maintainers; [ freezeboy ];
34   };