summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMax Wilson <max.wilson@insight.com>2019-04-30 12:38:09 -0400
committerWael M. Nasreddine <wael.nasreddine@gmail.com>2019-07-16 14:54:46 -0700
commite0c1e74805e979b8be0222092cc2be2a4ebac548 (patch)
tree14d54b406ce106ceda4a72d136d8166e7435a648 /pkgs
parentddb3d34d882a562cf9047795e58dee246bc5629e (diff)
downloadnixpkgs-e0c1e74805e979b8be0222092cc2be2a4ebac548.tar
nixpkgs-e0c1e74805e979b8be0222092cc2be2a4ebac548.tar.gz
nixpkgs-e0c1e74805e979b8be0222092cc2be2a4ebac548.tar.bz2
nixpkgs-e0c1e74805e979b8be0222092cc2be2a4ebac548.tar.lz
nixpkgs-e0c1e74805e979b8be0222092cc2be2a4ebac548.tar.xz
nixpkgs-e0c1e74805e979b8be0222092cc2be2a4ebac548.tar.zst
nixpkgs-e0c1e74805e979b8be0222092cc2be2a4ebac548.zip
pythonPackages.azure-nspkg: refactor
updated license and homepage
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/azure-nspkg/default.nix14
1 files changed, 9 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/azure-nspkg/default.nix b/pkgs/development/python-modules/azure-nspkg/default.nix
index f95db7b1c59..bb1cb41f341 100644
--- a/pkgs/development/python-modules/azure-nspkg/default.nix
+++ b/pkgs/development/python-modules/azure-nspkg/default.nix
@@ -1,6 +1,8 @@
-{ pkgs
+{ lib
 , buildPythonPackage
 , fetchPypi
+, python
+, isPy3k
 }:
 
 buildPythonPackage rec {
@@ -13,10 +15,12 @@ buildPythonPackage rec {
     sha256 = "e7d3cea6af63e667d87ba1ca4f8cd7cb4dfca678e4c55fc1cedb320760e39dd0";
   };
 
-  meta = with pkgs.lib; {
+  doCheck = false;
+
+  meta = with lib; {
     description = "Microsoft Azure SDK for Python";
-    homepage = "https://azure.microsoft.com/en-us/develop/python/";
-    license = licenses.asl20;
-    maintainers = with maintainers; [ olcai ];
+    homepage = https://github.com/Azure/azure-sdk-for-python;
+    license = licenses.mit;
+    maintainers = with maintainers; [ olcai mwilsoninsight ];
   };
 }