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

pythonPackages.azure-mgmt-scheduler: init at 2.0.0

authored by Max Wilson and committed by Wael M. Nasreddine e70d8d98 e1f894b0

+38
+36
pkgs/development/python-modules/azure-mgmt-scheduler/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , msrest 5 + , msrestazure 6 + , azure-common 7 + , azure-mgmt-nspkg 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "azure-mgmt-scheduler"; 12 + version = "2.0.0"; 13 + 14 + src = fetchPypi { 15 + inherit pname version; 16 + extension = "zip"; 17 + sha256 = "c6e6edd386ddc4c21d54b1497c3397b970bc127b71809b51bd2391cb1f3d1a14"; 18 + }; 19 + 20 + propagatedBuildInputs = [ 21 + msrest 22 + msrestazure 23 + azure-common 24 + azure-mgmt-nspkg 25 + ]; 26 + 27 + # has no tests 28 + doCheck = false; 29 + 30 + meta = with lib; { 31 + description = "This is the Microsoft Azure Scheduler Management Client Library"; 32 + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/scheduler?view=azure-python; 33 + license = licenses.mit; 34 + maintainers = with maintainers; [ mwilsoninsight ]; 35 + }; 36 + }
+2
pkgs/top-level/python-packages.nix
··· 382 382 383 383 azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { }; 384 384 385 + azure-mgmt-scheduler = callPackage ../development/python-modules/azure-mgmt-scheduler { }; 386 + 385 387 azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { }; 386 388 387 389 backports_csv = callPackage ../development/python-modules/backports_csv {};