ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-machinelearningcompute / default.nix
blob543589b7aecb7c6719538ba1bb9e1f1e917a13b2
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , msrest
5 , msrestazure
6 , azure-common
7 , azure-mgmt-nspkg
8 }:
10 buildPythonPackage rec {
11   pname = "azure-mgmt-machinelearningcompute";
12   version = "0.4.1";
14   src = fetchPypi {
15     inherit pname version;
16     extension = "zip";
17     sha256 = "7a52f85591114ef33a599dabbef840d872b7f599b7823e596af9490ec51b873f";
18   };
20   propagatedBuildInputs = [
21     msrest
22     msrestazure
23     azure-common
24     azure-mgmt-nspkg
25   ];
27   # has no tests
28   doCheck = false;
30   meta = with lib; {
31     description = "This is the Microsoft Azure Machine Learning Compute Management Client Library";
32     homepage = "https://github.com/Azure/azure-sdk-for-python";
33     license = licenses.mit;
34     maintainers = with maintainers; [ maxwilson ];
35   };