Skip to content

Commit

Permalink
Merge pull request #247956 from fabaff/azure-synapse-artifacts-bump
Browse files Browse the repository at this point in the history
python311Packages.azure-synapse-artifacts: 0.16.0 -> 0.17.0
  • Loading branch information
natsukium committed Aug 16, 2023
2 parents 0e4906f + f409e12 commit caac0eb
Showing 1 changed file with 14 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,29 +1,39 @@
{ lib, buildPythonPackage, fetchPypi
{ lib
, buildPythonPackage
, fetchPypi
, azure-common
, azure-core
, azure-mgmt-core
, msrest
, pythonOlder
}:

buildPythonPackage rec {
pname = "azure-synapse-artifacts";
version = "0.16.0";
version = "0.17.0";
format = "setuptools";

disabled = pythonOlder "3.7";

src = fetchPypi {
inherit pname version;
extension = "zip";
hash = "sha256-J96cBqCCajK34M7v+2h6t2ptm7QwmfQt25674Q4Nr94=";
hash = "sha256-58k8F/aUBBNJwGBiPZojkSzEXZ3Kd6uEwr0cZbFaM9k=";
};

propagatedBuildInputs = [
azure-common
azure-core
azure-mgmt-core
msrest
];

# zero tests run
doCheck = false;

pythonImportsCheck = [ "azure.synapse.artifacts" ];
pythonImportsCheck = [
"azure.synapse.artifacts"
];

meta = with lib; {
description = "Microsoft Azure Synapse Artifacts Client Library for Python";
Expand Down

0 comments on commit caac0eb

Please sign in to comment.