mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
pythonPackages.azure-storage-common: init at 1.4.0
This commit is contained in:
parent
878122ed3d
commit
288407be95
@ -0,0 +1,37 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, azure-common
|
||||
, cryptography
|
||||
, python-dateutil
|
||||
, requests
|
||||
, isPy3k
|
||||
, azure-storage-nspkg
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "azure-storage-common";
|
||||
version = "1.4.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "7ab607f9b8fd27b817482194b1e7d43484c65dcf2605aae21ad8706c6891934d";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
azure-common
|
||||
cryptography
|
||||
python-dateutil
|
||||
requests
|
||||
] ++ lib.optional (!isPy3k) azure-storage-nspkg;
|
||||
|
||||
# has no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Client library for Microsoft Azure Storage services containing common code shared by blob, file and queue";
|
||||
homepage = https://github.com/Azure/azure-storage-python/tree/master/azure-storage-common;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ cmcdragonkai ];
|
||||
};
|
||||
}
|
@ -240,6 +240,8 @@ in {
|
||||
|
||||
azure-storage-nspkg = callPackage ../development/python-modules/azure-storage-nspkg { };
|
||||
|
||||
azure-storage-common = callPackage ../development/python-modules/azure-storage-common { };
|
||||
|
||||
azure-servicemanagement-legacy = callPackage ../development/python-modules/azure-servicemanagement-legacy { };
|
||||
|
||||
backports_csv = callPackage ../development/python-modules/backports_csv {};
|
||||
|
Loading…
Reference in New Issue
Block a user