Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 28 lines 640 B view raw
1{ lib 2, buildPythonPackage 3, fetchFromGitHub 4, utils 5}: 6 7buildPythonPackage rec { 8 pname = "python-hpilo"; 9 version = "4.4.3"; 10 11 src = fetchFromGitHub { 12 owner = "seveas"; 13 repo = pname; 14 rev = version; 15 sha256 = "1dk5xswydw7nmn9hlna1xca1mzcas9qv2kmid5yx8kvk3hjqci9v"; 16 }; 17 18 # Most tests requires an actual iLO to run 19 doCheck = false; 20 pythonImportsCheck = [ "hpilo" ]; 21 22 meta = with lib; { 23 description = "Python module to access the HP iLO XML interface"; 24 homepage = "https://seveas.github.io/python-hpilo/"; 25 license = with licenses; [ asl20 gpl3Plus ]; 26 maintainers = with maintainers; [ fab ]; 27 }; 28}