mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
python3Packages.azure-mgmt-core: init at 1.0.0
This commit is contained in:
parent
d17be33ecb
commit
5a89480b81
36
pkgs/development/python-modules/azure-mgmt-core/default.nix
Normal file
36
pkgs/development/python-modules/azure-mgmt-core/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ pkgs
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, python
|
||||
, azure-core
|
||||
, isPy3k
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "1.0.0";
|
||||
pname = "azure-mgmt-core";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
extension = "zip";
|
||||
sha256 = "0pm565v05480f672l0n8z2sg6zk6iqyi91n0dhscibhdl54sy3si";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
azure-core
|
||||
];
|
||||
|
||||
pythonNamespaces = "azure.mgmt";
|
||||
|
||||
# not included
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "azure.mgmt.core" "azure.core" ];
|
||||
|
||||
meta = with pkgs.lib; {
|
||||
description = "Microsoft Azure Management Core Library for Python";
|
||||
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jonringer ];
|
||||
};
|
||||
}
|
|
@ -378,6 +378,8 @@ in {
|
|||
|
||||
azure-mgmt-containerservice = callPackage ../development/python-modules/azure-mgmt-containerservice { };
|
||||
|
||||
azure-mgmt-core = callPackage ../development/python-modules/azure-mgmt-core { };
|
||||
|
||||
azure-mgmt-cosmosdb = callPackage ../development/python-modules/azure-mgmt-cosmosdb { };
|
||||
|
||||
azure-mgmt-datafactory = callPackage ../development/python-modules/azure-mgmt-datafactory { };
|
||||
|
|
Loading…
Reference in a new issue