Unverified Commit a09d6bc4 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

stratisd: 3.7.3 -> 3.8.0 (#389415)

parents c0e7f06a 227cc6ec
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ import ../make-test-python.nix (
        machine.succeed("stratis pool rebind keyring  testpool testkey2")
        # test restarting encrypted pool
        machine.succeed("stratis pool stop  --name testpool")
        machine.succeed("stratis pool start --name testpool --unlock-method keyring")
        machine.succeed("stratis pool start --name testpool --unlock-method any")
      '';
  }
)
+7 −5
Original line number Diff line number Diff line
@@ -7,21 +7,21 @@

python3Packages.buildPythonApplication rec {
  pname = "stratis-cli";
  version = "3.7.0";
  version = "3.8.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "stratis-storage";
    repo = pname;
    repo = "stratis-cli";
    tag = "v${version}";
    hash = "sha256-F/RP/bWf2fV1IvNbrkYX3d94om1kACNe+oJI8pXM5P4=";
    hash = "sha256-zyby53QEC9txH/EP0plV4vUg9fRV6tZJtdQEWQ2iKCA=";
  };

  nativeBuildInputs = with python3Packages; [
  build-system = with python3Packages; [
    setuptools
  ];

  propagatedBuildInputs = with python3Packages; [
  dependencies = with python3Packages; [
    dbus-client-gen
    dbus-python-client-gen
    justbytes
@@ -42,6 +42,8 @@ python3Packages.buildPythonApplication rec {

  pythonImportsCheck = [ "stratis_cli" ];

  env.STRATIS_STRICT_POOL_FEATURES = "1"; # required for unit tests

  passthru.tests = nixosTests.stratis;

  meta = with lib; {
+4 −4
Original line number Diff line number Diff line
@@ -29,18 +29,18 @@

stdenv.mkDerivation rec {
  pname = "stratisd";
  version = "3.7.3";
  version = "3.8.1";

  src = fetchFromGitHub {
    owner = "stratis-storage";
    repo = pname;
    repo = "stratisd";
    tag = "stratisd-v${version}";
    hash = "sha256-W8ssLTFU36t6iLrt9S9V8qcN7EP4IsL7VbhNPLpftio=";
    hash = "sha256-vYqvYC3r1TQ62YtMJYOx8bRxFJOam5ntbOS+FJZL/gQ=";
  };

  cargoDeps = rustPlatform.fetchCargoVendor {
    inherit src;
    hash = "sha256-blhB+UfvG22Xe2O0csZ00/jgnVcLTUIkDJG5P22mffQ=";
    hash = "sha256-B3n9Ot4CFcVL/R2wHPuDIPBca/5pb2VgcuP1pxnnUrA=";
  };

  postPatch = ''