Skip to content

Commit

Permalink
python312Packages.blivet: 3.10.1 -> 3.11.0 (NixOS#354711)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfgangwalther authored Dec 15, 2024
2 parents dd0af4f + 5581748 commit a2a9fea
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
13 changes: 10 additions & 3 deletions pkgs/by-name/li/libblockdev/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,19 @@
, e2fsprogs
, libnvme
, keyutils
, libatasmart
, json-glib
, nix-update-script
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libblockdev";
version = "3.1.1";
version = "3.2.1";

src = fetchFromGitHub {
owner = "storaged-project";
repo = "libblockdev";
rev = "${finalAttrs.version}-1";
hash = "sha256-WCMedMkaMMhZbB3iJu3c+CTT3AvOjzOSYP45J+NQEDQ=";
rev = finalAttrs.version;
hash = "sha256-85vfHHR6WqSPCW1QmD3HccIpOqNYrx1PDjTh297VA1A=";
};

outputs = [ "out" "dev" "devdoc" "python" ];
Expand Down Expand Up @@ -70,8 +73,10 @@ stdenv.mkDerivation (finalAttrs: {
e2fsprogs
glib
gptfdisk
json-glib
keyutils
kmod
libatasmart
libbytesize
libndctl
libnvme
Expand All @@ -89,6 +94,8 @@ stdenv.mkDerivation (finalAttrs: {
${lib.makeBinPath [ thin-provisioning-tools ]}
'';

passthru.updateScript = nix-update-script { };

meta = {
changelog = "https://github.com/storaged-project/libblockdev/raw/${finalAttrs.src.rev}/NEWS.rst";
description = "Library for manipulating block devices";
Expand Down
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/blivet/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ let
in
buildPythonPackage rec {
pname = "blivet";
version = "3.10.1";
version = "3.11.0";
format = "setuptools";

src = fetchFromGitHub {
owner = "storaged-project";
repo = "blivet";
rev = "blivet-${version}";
hash = "sha256-Ooc63mf03ZO7zxm8s/Tm8jSQg5LWyKnHAqbyvn1UHB8=";
rev = "refs/tags/blivet-${version}";
hash = "sha256-X5U6XFmcsTfetpxwH0ONSnTasnwh2USukYtx+8HwVGc=";
};

postPatch = ''
Expand Down

0 comments on commit a2a9fea

Please sign in to comment.