diff options
Diffstat (limited to 'pkgs/development/python-modules/dnf4/default.nix')
-rw-r--r-- | pkgs/development/python-modules/dnf4/default.nix | 41 |
1 files changed, 21 insertions, 20 deletions
diff --git a/pkgs/development/python-modules/dnf4/default.nix b/pkgs/development/python-modules/dnf4/default.nix index 31d617d61344..c8d675d7b6ea 100644 --- a/pkgs/development/python-modules/dnf4/default.nix +++ b/pkgs/development/python-modules/dnf4/default.nix @@ -1,14 +1,15 @@ -{ lib -, buildPythonPackage -, cmake -, fetchFromGitHub -, gettext -, libcomps -, libdnf -, python -, rpm -, sphinx -, nix-update-script +{ + lib, + buildPythonPackage, + cmake, + fetchFromGitHub, + gettext, + libcomps, + libdnf, + python, + rpm, + sphinx, + nix-update-script, }: let @@ -17,21 +18,23 @@ in buildPythonPackage rec { pname = "dnf4"; - version = "4.20.0"; + version = "4.22.0"; format = "other"; - outputs = [ "out" "man" "py" ]; + outputs = [ + "out" + "man" + "py" + ]; src = fetchFromGitHub { owner = "rpm-software-management"; repo = "dnf"; rev = version; - hash = "sha256-0BwnUb0ZORjJmB70Jca/CnyysIOGB7azVzUUIGplmso="; + hash = "sha256-I79cwK+xPmHS3z8/rKar5G5EbK6IYq0Ypq9KrShJ3sg="; }; - patches = [ - ./fix-python-install-dir.patch - ]; + patches = [ ./fix-python-install-dir.patch ]; postPatch = '' substituteInPlace CMakeLists.txt \ @@ -59,9 +62,7 @@ buildPythonPackage rec { rpm ]; - cmakeFlags = [ - "-DPYTHON_DESIRED=${pyMajor}" - ]; + cmakeFlags = [ "-DPYTHON_DESIRED=${pyMajor}" ]; dontWrapPythonPrograms = true; |