Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / re / redfishtool / package.nix
blob020adb304479d07ed8a5849a4c6916ac3eca32ab
1 { lib
2 , fetchPypi
3 , python3
4 }:
6 let
7   pname = "redfishtool";
8   version = "1.1.8";
9 in
10 python3.pkgs.buildPythonApplication {
11   inherit pname version;
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-X/G6osOHCBidKZG/Y2nmHadifDacJhjBIc7WYrUCPn8=";
17   };
19   propagatedBuildInputs = with python3.pkgs; [ requests python-dateutil ];
21   meta = with lib; {
22     description = "Python34 program that implements a command line tool for accessing the Redfish API";
23     homepage = "https://github.com/DMTF/Redfishtool";
24     changelog = "https://github.com/DMTF/Redfishtool/blob/${version}/CHANGELOG.md";
25     license = licenses.bsd3;
26     maintainers = with maintainers; [ jfvillablanca ];
27     mainProgram = "redfishtool";
28   };