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