Files
nixpkgs/pkgs/development/python-modules/nocasedict/default.nix
T
Martin Weinelt 6bc8f190df python3Packages.nocasedict: 2.0.4 -> 2.1.0
https://github.com/pywbem/nocasedict/blob/2.1.0/docs/changes.rst

This commit was automatically generated using update-python-libraries.
2025-08-09 19:01:58 +02:00

36 lines
786 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "nocasedict";
version = "2.1.0";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchPypi {
inherit pname version;
hash = "sha256-tWPVhRy7DgsQ+7YYm6h+BhLSLlpvOgBKRXOrWziqqn0=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "nocasedict" ];
meta = with lib; {
description = "Case-insensitive ordered dictionary for Python";
homepage = "https://github.com/pywbem/nocasedict";
changelog = "https://github.com/pywbem/nocasedict/blob/${version}/docs/changes.rst";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ freezeboy ];
};
}