summary refs log blame commit diff
path: root/pkgs/development/python-modules/azure-mgmt-sql/default.nix
blob: 75b41758b3d0d4c204eed36a67844adf5cd7cbfe (plain) (tree)
1
2
3
4
5
6
7





                    
                 





                           
                    



                          
                                                                                





                           
                   






                                

                                            

                                                                              
                                                               
                           
                                                  

    
{ lib
, buildPythonPackage
, fetchPypi
, msrest
, msrestazure
, azure-common
, azure-mgmt-core
, azure-mgmt-nspkg
, isPy3k
}:

buildPythonPackage rec {
  pname = "azure-mgmt-sql";
  version = "3.0.1";

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "129042cc011225e27aee6ef2697d585fa5722e5d1aeb0038af6ad2451a285457";
  };

  propagatedBuildInputs = [
    msrest
    msrestazure
    azure-common
    azure-mgmt-core
  ] ++ lib.optionals (!isPy3k) [
    azure-mgmt-nspkg
  ];

  # has no tests
  doCheck = false;

  pythonImportsCheck = [ "azure.mgmt.sql" ];

  meta = with lib; {
    description = "This is the Microsoft Azure SQL Management Client Library";
    homepage = "https://github.com/Azure/azure-sdk-for-python";
    license = licenses.mit;
    maintainers = with maintainers; [ maxwilson ];
  };
}