python314Packages.geocoder: migrate to finalAttrs

This commit is contained in:
Fabian Affolter
2026-05-05 08:58:43 +02:00
parent c2a7df4855
commit 9c9b2d4df2
@@ -10,13 +10,13 @@
six,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "geocoder";
version = "1.38.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-yZJTdMlhV30K7kA7Ceb46hlx2RPwEfAMpwx2vq96d+c=";
};
@@ -38,6 +38,9 @@ buildPythonPackage rec {
six
];
# Tests are outdated
doCheck = false;
pythonImportsCheck = [ "geocoder" ];
meta = {
@@ -46,4 +49,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})