python312Packages.dnfile: refactor

This commit is contained in:
Fabian Affolter 2024-03-25 09:27:28 +01:00
parent fc029c2e53
commit 8ac38ca881

View File

@ -10,7 +10,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "dnfile"; pname = "dnfile";
version = "0.15.0"; version = "0.15.0";
format = "pyproject"; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -22,11 +22,11 @@ buildPythonPackage rec {
fetchSubmodules = true; fetchSubmodules = true;
}; };
nativeBuildInputs = [ build-system = [
setuptools setuptools
]; ];
propagatedBuildInputs = [ dependencies = [
pefile pefile
]; ];