python312Packages.dash-renderer: remove (#369714)
[NixPkgs.git] / pkgs / development / python-modules / azure-storage-common / default.nix
blob7f5b602dad1600c9a7166125adc0582586decc40
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   azure-common,
6   cryptography,
7   python-dateutil,
8   requests,
9   isPy3k,
10   azure-storage-nspkg,
13 buildPythonPackage rec {
14   pname = "azure-storage-common";
15   version = "2.1.0";
16   format = "setuptools";
18   src = fetchPypi {
19     inherit pname version;
20     sha256 = "ccedef5c67227bc4d6670ffd37cec18fb529a1b7c3a5e53e4096eb0cf23dc73f";
21   };
23   propagatedBuildInputs = [
24     azure-common
25     cryptography
26     python-dateutil
27     requests
28   ] ++ lib.optional (!isPy3k) azure-storage-nspkg;
30   # has no tests
31   doCheck = false;
33   meta = with lib; {
34     description = "Client library for Microsoft Azure Storage services containing common code shared by blob, file and queue";
35     homepage = "https://github.com/Azure/azure-sdk-for-python";
36     license = licenses.mit;
37     maintainers = with maintainers; [ cmcdragonkai ];
38   };