Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-scheduler / default.nix
blob306a7500114f755601b168315a3c4759a7a3e0a1
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-scheduler";
12   version = "2.0.0";
13   format = "setuptools";
15   src = fetchPypi {
16     inherit pname version;
17     extension = "zip";
18     sha256 = "c6e6edd386ddc4c21d54b1497c3397b970bc127b71809b51bd2391cb1f3d1a14";
19   };
21   propagatedBuildInputs = [
22     msrest
23     msrestazure
24     azure-common
25     azure-mgmt-nspkg
26   ];
28   # has no tests
29   doCheck = false;
31   meta = with lib; {
32     description = "This is the Microsoft Azure Scheduler Management Client Library";
33     homepage = "https://github.com/Azure/azure-sdk-for-python";
34     license = licenses.mit;
35     maintainers = with maintainers; [ maxwilson ];
36   };