python3Packages.pytest-mypy: use finalAttrs

This commit is contained in:
Sigmanificient
2026-01-07 02:19:47 +01:00
parent 017f71b04e
commit fc00559d57
@@ -10,14 +10,14 @@
setuptools-scm,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pytest-mypy";
version = "1.0.1";
pyproject = true;
src = fetchPypi {
pname = "pytest_mypy";
inherit version;
inherit (finalAttrs) version;
hash = "sha256-P1/K/3XIDczGtoz17MKOG75x6VMJRp63oov0CM5VwHQ=";
};
@@ -44,4 +44,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sigmanificient ];
};
}
})