pythonPackages.azure-mgmt-relay: init at 0.2.0
This commit is contained in:
parent
6730fb4fcb
commit
b7a690c164
34
pkgs/development/python-modules/azure-mgmt-relay/default.nix
Normal file
34
pkgs/development/python-modules/azure-mgmt-relay/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, msrestazure
|
||||
, azure-common
|
||||
, azure-mgmt-nspkg
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "azure-mgmt-relay";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
extension = "zip";
|
||||
sha256 = "0s5z4cil750wn770m0hdzcrpshj4bj1bglkkvxdx9l9054dk9s57";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
msrestazure
|
||||
azure-common
|
||||
azure-mgmt-nspkg
|
||||
];
|
||||
|
||||
# has no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "This is the Microsoft Azure Relay Client Library";
|
||||
homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/relay?view=azure-python;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ mwilsoninsight ];
|
||||
};
|
||||
}
|
@ -376,6 +376,8 @@ in {
|
||||
|
||||
azure-mgmt-redis = callPackage ../development/python-modules/azure-mgmt-redis { };
|
||||
|
||||
azure-mgmt-relay = callPackage ../development/python-modules/azure-mgmt-relay { };
|
||||
|
||||
azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { };
|
||||
|
||||
azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { };
|
||||
|
Loading…
Reference in New Issue
Block a user