Unverified Commit 227cc6ec authored by Nick Cao's avatar Nick Cao
Browse files
parent 6b73c05f
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -7,14 +7,14 @@

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

  src = fetchFromGitHub {
    owner = "stratis-storage";
    repo = "stratis-cli";
    tag = "v${version}";
    hash = "sha256-hbkklUX8QHGl9O+0Bcem6nbwyp6jbzFz5YtArh0W0oE=";
    hash = "sha256-zyby53QEC9txH/EP0plV4vUg9fRV6tZJtdQEWQ2iKCA=";
  };

  build-system = with python3Packages; [
@@ -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; {