mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
pythonPackages.azure-servicefabric: init at 6.4.0.0
This commit is contained in:
parent
1921e31873
commit
7495918f3a
@ -0,0 +1,32 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, azure-common
|
||||
, msrest
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "azure-servicefabric";
|
||||
version = "6.4.0.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
extension = "zip";
|
||||
sha256 = "f049e8c4a179f1277f2ec60158f88caf14a50f7df491fc6841e360cd61746da1";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
azure-common
|
||||
msrest
|
||||
];
|
||||
|
||||
# has no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "This project provides a client library in Python that makes it easy to consume Microsoft Azure Storage services";
|
||||
homepage = https://pypi.org/project/azure-servicefabric;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ mwilsoninsight ];
|
||||
};
|
||||
}
|
@ -262,6 +262,22 @@ in {
|
||||
|
||||
azure-servicebus = callPackage ../development/python-modules/azure-servicebus { };
|
||||
|
||||
azure-servicefabric = callPackage ../development/python-modules/azure-servicefabric { };
|
||||
|
||||
azure-servicemanagement-legacy = callPackage ../development/python-modules/azure-servicemanagement-legacy { };
|
||||
|
||||
azure-storage-nspkg = callPackage ../development/python-modules/azure-storage-nspkg { };
|
||||
|
||||
azure-storage-common = callPackage ../development/python-modules/azure-storage-common { };
|
||||
|
||||
azure-storage = callPackage ../development/python-modules/azure-storage { };
|
||||
|
||||
azure-storage-blob = callPackage ../development/python-modules/azure-storage-blob { };
|
||||
|
||||
azure-storage-file = callPackage ../development/python-modules/azure-storage-file { };
|
||||
|
||||
azure-storage-queue = callPackage ../development/python-modules/azure-storage-queue { };
|
||||
|
||||
azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { };
|
||||
|
||||
azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { };
|
||||
@ -274,20 +290,6 @@ in {
|
||||
|
||||
azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { };
|
||||
|
||||
azure-storage = callPackage ../development/python-modules/azure-storage { };
|
||||
|
||||
azure-storage-nspkg = callPackage ../development/python-modules/azure-storage-nspkg { };
|
||||
|
||||
azure-storage-common = callPackage ../development/python-modules/azure-storage-common { };
|
||||
|
||||
azure-storage-blob = callPackage ../development/python-modules/azure-storage-blob { };
|
||||
|
||||
azure-storage-file = callPackage ../development/python-modules/azure-storage-file { };
|
||||
|
||||
azure-storage-queue = callPackage ../development/python-modules/azure-storage-queue { };
|
||||
|
||||
azure-servicemanagement-legacy = callPackage ../development/python-modules/azure-servicemanagement-legacy { };
|
||||
|
||||
backports_csv = callPackage ../development/python-modules/backports_csv {};
|
||||
|
||||
backports-shutil-which = callPackage ../development/python-modules/backports-shutil-which {};
|
||||
|
Loading…
Reference in New Issue
Block a user