python30Packages.azure-storage-blob: add changelog to meta

- disable on unsupporte Python releases
- adjust inputs
This commit is contained in:
Fabian Affolter 2023-01-02 10:19:32 +01:00 committed by GitHub
parent 91a4ee458d
commit 4c957878fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,37 +1,46 @@
{ lib
, buildPythonPackage
, fetchPypi
, azure-common
, azure-core
, azure-storage-common
, buildPythonPackage
, cryptography
, fetchPypi
, isodate
, msrest
, isPy3k
, futures ? null
, pythonOlder
, typing-extensions
}:
buildPythonPackage rec {
pname = "azure-storage-blob";
version = "12.14.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "sha256-hg1NgphaS/x9MnHnEnWvMw9U8zCnVDVUNae6dJzN6Zc=";
hash = "sha256-hg1NgphaS/x9MnHnEnWvMw9U8zCnVDVUNae6dJzN6Zc=";
};
propagatedBuildInputs = [
azure-common
azure-core
azure-storage-common
cryptography
isodate
msrest
] ++ lib.optional (!isPy3k) futures;
typing-extensions
];
# has no tests
# Module has no tests
doCheck = false;
meta = with lib; {
description = "Client library for Microsoft Azure Storage services containing the blob service APIs";
homepage = "https://github.com/Azure/azure-sdk-for-python";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-storage-blob_${version}/sdk/storage/azure-storage-blob/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ cmcdragonkai maxwilson ];
};