stratis-cli: init at 3.2.0

This commit is contained in:
Nick Cao 2022-08-01 23:41:31 +08:00
parent 91dee8a456
commit bb307c917d
No known key found for this signature in database
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ lib
, python3Packages
, fetchFromGitHub
}:
python3Packages.buildPythonApplication rec {
pname = "stratis-cli";
version = "3.2.0";
src = fetchFromGitHub {
owner = "stratis-storage";
repo = pname;
rev = "v${version}";
hash = "sha256-JQXTzvm4l/pl2T4djZ3HEdDQJdFE+I9doe8Iv5q34kw=";
};
propagatedBuildInputs = with python3Packages; [
psutil
python-dateutil
wcwidth
justbytes
dbus-client-gen
dbus-python-client-gen
packaging
];
meta = with lib; {
description = "CLI for the Stratis project";
homepage = "https://stratis-storage.github.io";
license = licenses.asl20;
maintainers = with maintainers; [ nickcao ];
};
}

View file

@ -5918,6 +5918,8 @@ with pkgs;
stratisd = callPackage ../tools/filesystems/stratisd { };
stratis-cli = callPackage ../tools/filesystems/stratis-cli { };
strawberry = libsForQt5.callPackage ../applications/audio/strawberry { };
schildichat-desktop = callPackage ../applications/networking/instant-messengers/schildichat/schildichat-desktop.nix {