python3Packages.flatten-dict: 0.4.2 -> 0.5.0 (#517402)

This commit is contained in:
Fabian Affolter
2026-05-07 06:57:04 +00:00
committed by GitHub
@@ -4,24 +4,21 @@
fetchFromGitHub,
poetry-core,
pytestCheckHook,
six,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "flatten-dict";
version = "0.4.2";
version = "0.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "ianlini";
repo = "flatten-dict";
rev = version;
hash = "sha256-uHenKoD4eLm9sMREVuV0BB/oUgh4NMiuj+IWd0hlxNQ=";
tag = finalAttrs.version;
hash = "sha256-wzCuTnLOOeybhBPcyyPNPKWoJBHwaKkmARTzlg87wtU=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [ six ];
build-system = [ poetry-core ];
nativeCheckInputs = [ pytestCheckHook ];
@@ -30,7 +27,8 @@ buildPythonPackage rec {
meta = {
description = "Module for flattening and unflattening dict-like objects";
homepage = "https://github.com/ianlini/flatten-dict";
changelog = "https://github.com/ianlini/flatten-dict/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})