Merge pull request #260447 from jfvillablanca/redfishtool

redfishtool: init at 1.1.8
This commit is contained in:
Bruno Bigras 2024-02-17 00:48:44 -05:00 committed by GitHub
commit 5586a7142e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,28 @@
{ lib
, fetchPypi
, python3
}:
let
pname = "redfishtool";
version = "1.1.8";
in
python3.pkgs.buildPythonApplication {
inherit pname version;
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-X/G6osOHCBidKZG/Y2nmHadifDacJhjBIc7WYrUCPn8=";
};
propagatedBuildInputs = with python3.pkgs; [ requests python-dateutil ];
meta = with lib; {
description = "A Python34 program that implements a command line tool for accessing the Redfish API";
homepage = "https://github.com/DMTF/Redfishtool";
license = licenses.bsd3;
maintainers = with maintainers; [ jfvillablanca ];
mainProgram = "redfishtool";
};
}