about summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-synapse-artifacts
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-11-20 10:05:01 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2023-11-20 10:05:01 +0100
commiteb1d6dc5e60b1279d5507250aca58b2ed6ea4fbd (patch)
tree3fb5ad33e4331a69d9d9db4c8c46f9ed4ab65530 /pkgs/development/python-modules/azure-synapse-artifacts
parentae03901e1aa89caad3e04a883ebf39cc7caeb472 (diff)
python311Packages.azure-synapse-artifacts: 0.17.0 -> 0.18.0
Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-synapse-artifacts_0.18.0/sdk/synapse/azure-synapse-artifacts/CHANGELOG.md
Diffstat (limited to 'pkgs/development/python-modules/azure-synapse-artifacts')
-rw-r--r--pkgs/development/python-modules/azure-synapse-artifacts/default.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/azure-synapse-artifacts/default.nix b/pkgs/development/python-modules/azure-synapse-artifacts/default.nix
index 2caf5996c30c0..1782dd56e4854 100644
--- a/pkgs/development/python-modules/azure-synapse-artifacts/default.nix
+++ b/pkgs/development/python-modules/azure-synapse-artifacts/default.nix
@@ -1,34 +1,33 @@
 { lib
-, buildPythonPackage
-, fetchPypi
 , azure-common
 , azure-core
 , azure-mgmt-core
-, msrest
+, buildPythonPackage
+, fetchPypi
+, isodate
 , pythonOlder
 }:
 
 buildPythonPackage rec {
   pname = "azure-synapse-artifacts";
-  version = "0.17.0";
+  version = "0.18.0";
   format = "setuptools";
 
-  disabled = pythonOlder "3.7";
+  disabled = pythonOlder "3.8";
 
   src = fetchPypi {
     inherit pname version;
-    extension = "zip";
-    hash = "sha256-58k8F/aUBBNJwGBiPZojkSzEXZ3Kd6uEwr0cZbFaM9k=";
+    hash = "sha256-qgiHMzW7T5NuQl0jwZheMXp7wHhNOHyH24J6wfc4VqQ=";
   };
 
   propagatedBuildInputs = [
     azure-common
     azure-core
     azure-mgmt-core
-    msrest
+    isodate
   ];
 
-  # zero tests run
+  # Tests are only available in mono-repo
   doCheck = false;
 
   pythonImportsCheck = [
@@ -38,6 +37,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Microsoft Azure Synapse Artifacts Client Library for Python";
     homepage = "https://github.com/Azure/azure-sdk-for-python";
+    changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-synapse-artifacts_${version}/sdk/synapse/azure-synapse-artifacts/CHANGELOG.md";
     license = licenses.mit;
     maintainers = with maintainers; [ jonringer ];
   };