nixpkgs/pkgs/development/python-modules/orderedmultidict/default.nix
Martin Weinelt 9e0b6fa140 python3Packages.orderedmultidict: 1.0.1 -> 1.0.2
This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:43 +01:00

36 lines
783 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
setuptools,
six,
}:
buildPythonPackage (finalAttrs: {
pname = "orderedmultidict";
version = "1.0.2";
pyproject = true;
src = fetchFromGitHub {
owner = "gruns";
repo = "orderedmultidict";
# https://github.com/gruns/orderedmultidict/issues/32
rev = "901194bed9c2de9e336358f3328132a81a14314e";
hash = "sha256-XJKmchG3BmPKrw20BEMLe2V6XlN9tXcgkf5G+P97uAQ=";
};
build-system = [ setuptools ];
dependencies = [ six ];
pythonImportsCheck = [ "orderedmultidict" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Ordered Multivalue Dictionary";
homepage = "https://github.com/gruns/orderedmultidict";
license = lib.licenses.unlicense;
};
})