nixpkgs/pkgs/development/python-modules/azure-storage-queue/default.nix
2019-10-20 11:18:11 +02:00

32 lines
689 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, azure-common
, azure-storage-common
}:
buildPythonPackage rec {
pname = "azure-storage-queue";
version = "1.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "0bafe9e61c0ce7b3f3ecadea21e931dab3248bd4989dc327a8666c5deae7f7ed";
};
propagatedBuildInputs = [
azure-common
azure-storage-common
];
# has no tests
doCheck = false;
meta = with lib; {
description = "Client library for Microsoft Azure Storage services containing the queue service APIs";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;
maintainers = with maintainers; [ cmcdragonkai ];
};
}