nixpkgs/pkgs/development/python-modules/azure-cosmos/default.nix

32 lines
632 B
Nix
Raw Normal View History

{ buildPythonPackage
, lib
, python
, fetchPypi
, six
, requests
}:
buildPythonPackage rec {
2019-10-24 06:47:25 +00:00
version = "3.1.2";
pname = "azure-cosmos";
src = fetchPypi {
inherit pname version;
2019-10-24 06:47:25 +00:00
sha256 = "7f8ac99e4e40c398089fc383bfadcdc83376f72b88532b0cac0b420357cd08c7";
};
propagatedBuildInputs = [ six requests ];
pythonNamespaces = [ "azure" ];
# requires an active Azure Cosmos service
doCheck = false;
meta = with lib; {
description = "Azure Cosmos DB API";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}