python3Packages.python-sat: use finalAttrs

This commit is contained in:
Christoph Jabs
2026-02-05 09:22:02 +02:00
parent 97061e298c
commit 26b3fbc4ce
@@ -7,7 +7,7 @@
pypblib,
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "python-sat";
version = "1.8.dev28";
pyproject = true;
@@ -15,7 +15,7 @@ buildPythonPackage rec {
build-system = [ setuptools ];
src = fetchPypi {
inherit version;
inherit (finalAttrs) version;
pname = "python_sat";
hash = "sha256-eFBUismC7x2+ng+8rbXxZTis/xNKSx2I/lVkCbx4dgo=";
};
@@ -57,4 +57,4 @@ buildPythonPackage rec {
];
platforms = lib.platforms.all;
};
}
})