Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python312Packages.azure-mgmt-hdinsight: format with nixfmt

+15 -13
+15 -13
pkgs/development/python-modules/azure-mgmt-hdinsight/default.nix
··· 1 - { lib 2 - , azure-common 3 - , azure-mgmt-core 4 - , buildPythonPackage 5 - , fetchPypi 6 - , msrest 7 - , msrestazure 8 - , pythonOlder 9 - , setuptools 10 }: 11 12 buildPythonPackage rec { ··· 22 extension = "zip"; 23 }; 24 25 - build-system = [ 26 - setuptools 27 - ]; 28 29 dependencies = [ 30 azure-common ··· 36 # no tests included 37 doCheck = false; 38 39 - pythonImportsCheck = [ "azure.common" "azure.mgmt.hdinsight" ]; 40 41 meta = with lib; { 42 description = "Microsoft Azure HDInsight Management Client Library for Python";
··· 1 + { 2 + lib, 3 + azure-common, 4 + azure-mgmt-core, 5 + buildPythonPackage, 6 + fetchPypi, 7 + msrest, 8 + msrestazure, 9 + pythonOlder, 10 + setuptools, 11 }: 12 13 buildPythonPackage rec { ··· 23 extension = "zip"; 24 }; 25 26 + build-system = [ setuptools ]; 27 28 dependencies = [ 29 azure-common ··· 35 # no tests included 36 doCheck = false; 37 38 + pythonImportsCheck = [ 39 + "azure.common" 40 + "azure.mgmt.hdinsight" 41 + ]; 42 43 meta = with lib; { 44 description = "Microsoft Azure HDInsight Management Client Library for Python";