Files
nixpkgs/pkgs/development/python-modules/nocaselist/default.nix
T
Martin Weinelt 850e9e5ea2 python3Packages.nocaselist: 2.0.3 -> 2.1.0
https://github.com/pywbem/nocaselist/blob/2.1.0/docs/changes.rst

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

39 lines
806 B
Nix

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