python3Packages.ucsmsdk: 0.9.21 -> 0.9.22 (#410566)

authored by dotlambda and committed by GitHub 4ede303c 30e0507f

+8 -5
+8 -5
pkgs/development/python-modules/ucsmsdk/default.nix
··· 3 buildPythonPackage, 4 fetchFromGitHub, 5 pyparsing, 6 six, 7 }: 8 9 buildPythonPackage rec { 10 pname = "ucsmsdk"; 11 - version = "0.9.21"; 12 - format = "setuptools"; 13 14 src = fetchFromGitHub { 15 owner = "CiscoUcs"; 16 repo = "ucsmsdk"; 17 tag = "v${version}"; 18 - hash = "sha256-iqwU42Im4/YyxefkJZ8Zn5CddjUzuZk/7zjLD/0pHm4="; 19 }; 20 21 - propagatedBuildInputs = [ 22 pyparsing 23 six 24 ]; ··· 31 meta = with lib; { 32 description = "Python SDK for Cisco UCS"; 33 homepage = "https://github.com/CiscoUcs/ucsmsdk"; 34 - changelog = "https://github.com/CiscoUcs/ucsmsdk/blob/v${version}/HISTORY.rst"; 35 license = licenses.asl20; 36 maintainers = with maintainers; [ SuperSandro2000 ]; 37 };
··· 3 buildPythonPackage, 4 fetchFromGitHub, 5 pyparsing, 6 + setuptools, 7 six, 8 }: 9 10 buildPythonPackage rec { 11 pname = "ucsmsdk"; 12 + version = "0.9.22"; 13 + pyproject = true; 14 15 src = fetchFromGitHub { 16 owner = "CiscoUcs"; 17 repo = "ucsmsdk"; 18 tag = "v${version}"; 19 + hash = "sha256-zpb43Id6uHBKpEORDGKNW8lXP10fQJm9lGOztxaTZSI="; 20 }; 21 22 + build-system = [ setuptools ]; 23 + 24 + dependencies = [ 25 pyparsing 26 six 27 ]; ··· 34 meta = with lib; { 35 description = "Python SDK for Cisco UCS"; 36 homepage = "https://github.com/CiscoUcs/ucsmsdk"; 37 + changelog = "https://github.com/CiscoUcs/ucsmsdk/blob/${src.tag}/HISTORY.rst"; 38 license = licenses.asl20; 39 maintainers = with maintainers; [ SuperSandro2000 ]; 40 };