home-assistant: 2025.1.1 -> 2025.1.2 (#372513)
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-machinelearningcompute / default.nix
blob118ba17016027594736f870144d76877a4633a74
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   msrest,
6   msrestazure,
7   azure-common,
8   azure-mgmt-nspkg,
9 }:
11 buildPythonPackage rec {
12   pname = "azure-mgmt-machinelearningcompute";
13   version = "0.4.1";
14   format = "setuptools";
16   src = fetchPypi {
17     inherit pname version;
18     extension = "zip";
19     sha256 = "7a52f85591114ef33a599dabbef840d872b7f599b7823e596af9490ec51b873f";
20   };
22   propagatedBuildInputs = [
23     msrest
24     msrestazure
25     azure-common
26     azure-mgmt-nspkg
27   ];
29   # has no tests
30   doCheck = false;
32   meta = with lib; {
33     description = "This is the Microsoft Azure Machine Learning Compute Management Client Library";
34     homepage = "https://github.com/Azure/azure-sdk-for-python";
35     license = licenses.mit;
36     maintainers = with maintainers; [ maxwilson ];
37   };