python3Packages.azure-mgmt-billing: 1.0.0 -> 6.0.0

master
Jonathan Ringer 2021-05-20 22:27:23 -07:00
parent 94d25cd555
commit 68d3a916af
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0
1 changed files with 4 additions and 2 deletions

View File

@ -3,6 +3,7 @@
, fetchPypi
, msrestazure
, azure-common
, azure-mgmt-core
, azure-mgmt-nspkg
, python
, isPy3k
@ -10,17 +11,18 @@
buildPythonPackage rec {
pname = "azure-mgmt-billing";
version = "1.0.0"; #pypi's 0.2.0 doesn't build ootb
version = "6.0.0"; #pypi's 0.2.0 doesn't build ootb
src = fetchPypi {
inherit pname version;
sha256 = "8b55064546c8e94839d9f8c98e9ea4b021004b3804e192bf39fa65b603536ad0";
sha256 = "d4f5c5a4188a456fe1eb32b6c45f55ca2069c74be41eb76921840b39f2f5c07f";
extension = "zip";
};
propagatedBuildInputs = [
msrestazure
azure-common
azure-mgmt-core
azure-mgmt-nspkg
];