summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-servicefabric
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2021-06-09 14:05:44 -0700
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-06-09 16:51:51 -0700
commit14afdb6d4b6190798d49266c4187c6f52c8261cd (patch)
tree96f806c176909f759f734902864a6e95f6f06ba2 /pkgs/development/python-modules/azure-mgmt-servicefabric
parente5561e72fe66869aecdedeb2986fc09c4bec54f7 (diff)
downloadnixpkgs-14afdb6d4b6190798d49266c4187c6f52c8261cd.tar
nixpkgs-14afdb6d4b6190798d49266c4187c6f52c8261cd.tar.gz
nixpkgs-14afdb6d4b6190798d49266c4187c6f52c8261cd.tar.bz2
nixpkgs-14afdb6d4b6190798d49266c4187c6f52c8261cd.tar.lz
nixpkgs-14afdb6d4b6190798d49266c4187c6f52c8261cd.tar.xz
nixpkgs-14afdb6d4b6190798d49266c4187c6f52c8261cd.tar.zst
nixpkgs-14afdb6d4b6190798d49266c4187c6f52c8261cd.zip
python3Packages.azure-mgmt-servicefabric: 0.5.0 -> 1.0.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-servicefabric')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-servicefabric/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-servicefabric/default.nix b/pkgs/development/python-modules/azure-mgmt-servicefabric/default.nix
index abb117d0046..661a507291d 100644
--- a/pkgs/development/python-modules/azure-mgmt-servicefabric/default.nix
+++ b/pkgs/development/python-modules/azure-mgmt-servicefabric/default.nix
@@ -6,23 +6,25 @@
 , msrest
 , msrestazure
 , azure-common
+, azure-mgmt-core
 , azure-mgmt-nspkg
 }:
 
 buildPythonPackage rec {
   pname = "azure-mgmt-servicefabric";
-  version = "0.5.0";
+  version = "1.0.0";
 
   src = fetchPypi {
     inherit pname version;
     extension = "zip";
-    sha256 = "5771f24516c8d4a27f5569f23f3a606f6f106e4ad502eec7f38aedfcd3eadc74";
+    sha256 = "de35e117912832c1a9e93109a8d24cab94f55703a9087b2eb1c5b0655b3b1913";
   };
 
   propagatedBuildInputs = [
     msrest
     msrestazure
     azure-common
+    azure-mgmt-core
     azure-mgmt-nspkg
   ];