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

This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:39 +01:00

39 lines
797 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "nocasedict";
version = "2.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "pywbem";
repo = "nocasedict";
tag = version;
hash = "sha256-e3APYlmeoby0CGoEh4g6ZK27DwWi4EZdpwsRORxly+w=";
};
build-system = [
setuptools
setuptools-scm
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "nocasedict" ];
meta = {
description = "Case-insensitive ordered dictionary for Python";
homepage = "https://github.com/pywbem/nocasedict";
changelog = "https://github.com/pywbem/nocasedict/blob/${src.tag}/docs/changes.rst";
license = lib.licenses.lgpl21Plus;
maintainers = [ ];
};
}