python3Packages.flatdict: 4.0.1 -> 4.1.0

This commit is contained in:
Martin Weinelt 2026-07-02 22:18:54 +02:00
commit 2acd69784c
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -2,20 +2,27 @@
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
hatch-vcs,
}:
buildPythonPackage rec {
pname = "flatdict";
version = "4.0.1";
format = "setuptools";
version = "4.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "gmr";
repo = "flatdict";
rev = version;
hash = "sha256-CWsTiCNdIKSQtjpQC07lhZoU1hXT/MGpXdj649x2GlU=";
tag = version;
hash = "sha256-sLeW92F473H90+EMHaIWPt9ETqSeL/DoLmlMAg9Thj4=";
};
build-system = [
hatchling
hatch-vcs
];
pythonImportsCheck = [ "flatdict" ];
meta = {