My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/azure-mgmt-synapse/default.nix

34 lines
734 B

{ lib, buildPythonPackage, fetchPypi, pythonOlder
, azure-common
, azure-mgmt-core
, msrest
, msrestazure
}:
buildPythonPackage rec {
pname = "azure-mgmt-synapse";
version = "2.0.0";
disabled = pythonOlder "3";
src = fetchPypi {
inherit pname version;
sha256 = "bec6bdfaeb55b4fdd159f2055e8875bf50a720bb0fce80a816e92a2359b898c8";
extension = "zip";
};
propagatedBuildInputs = [
azure-common
azure-mgmt-core
msrest
msrestazure
];
pythonImportsCheck = [ "azure.mgmt.synapse" ];
meta = with lib; {
description = "Azure python SDK";
homepage = "https://github.com/Azure/azure-sdk-for-python/";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}