Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 38 lines 799 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, msrest 5, msrestazure 6, azure-common 7, azure-mgmt-nspkg 8, isPy3k 9}: 10 11buildPythonPackage rec { 12 pname = "azure-mgmt-sql"; 13 version = "0.12.0"; 14 15 src = fetchPypi { 16 inherit pname version; 17 extension = "zip"; 18 sha256 = "8399702e9d1836f3b040ce0c93d8dc089767d66edb9224a3b8a6c9ab7e8ff01f"; 19 }; 20 21 propagatedBuildInputs = [ 22 msrest 23 msrestazure 24 azure-common 25 ] ++ lib.optionals (!isPy3k) [ 26 azure-mgmt-nspkg 27 ]; 28 29 # has no tests 30 doCheck = false; 31 32 meta = with lib; { 33 description = "This is the Microsoft Azure SQL Management Client Library"; 34 homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/sql?view=azure-python; 35 license = licenses.mit; 36 maintainers = with maintainers; [ mwilsoninsight ]; 37 }; 38}