python3Packages.dbf: modernize

This commit is contained in:
Harinn
2026-07-10 23:29:52 +07:00
parent d893e2d05c
commit 2fb12d0511

View File

@@ -7,13 +7,16 @@
python,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "dbf";
version = "0.99.11";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit pname version;
pname = "dbf";
inherit (finalAttrs) version;
hash = "sha256-IWnAUlLA776JfzRvBoMybsJYVL6rHQxkMN9ukDpXsxU=";
};
@@ -38,4 +41,4 @@ buildPythonPackage rec {
license = lib.licenses.bsd2;
maintainers = [ ];
};
}
})