python3Packages.azure-mgmt-security: 0.6.0 -> 1.0.0

This commit is contained in:
Jonathan Ringer 2021-01-11 16:19:24 -08:00 committed by Jonathan Ringer
parent 9071a6f006
commit 97e067707f

View File

@ -1,21 +1,27 @@
{ lib, buildPythonPackage, fetchPypi, isPy27 { lib, buildPythonPackage, fetchPypi, isPy27
, azure-common , azure-common
, azure-mgmt-core
, msrest , msrest
, msrestazure , msrestazure
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "0.6.0"; version = "1.0.0";
pname = "azure-mgmt-security"; pname = "azure-mgmt-security";
disabled = isPy27; disabled = isPy27;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "9f37d0151d730801222af111f0830905634795dbfd59ad1b89c35197421e74d3"; sha256 = "ae1cff598dfe80e93406e524c55c3f2cbffced9f9b7a5577e3375008a4c3bcad";
extension = "zip"; extension = "zip";
}; };
propagatedBuildInputs = [ azure-common msrest msrestazure ]; propagatedBuildInputs = [
azure-common
azure-mgmt-core
msrest
msrestazure
];
# no tests included # no tests included
doCheck = false; doCheck = false;