anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / azure-data-tables / default.nix
blob7b2dd03ad09b310cf8115c3d4e23299c8b6af804
2   lib,
3   azure-core,
4   buildPythonPackage,
5   fetchPypi,
6   isodate,
7   pythonOlder,
8   typing-extensions,
9   yarl,
12 buildPythonPackage rec {
13   pname = "azure-data-tables";
14   version = "12.5.0";
15   format = "setuptools";
17   disabled = pythonOlder "3.8";
19   src = fetchPypi {
20     inherit pname version;
21     hash = "sha256-7qOTpjgMQusD6AeCXAN4MgA9CcgjKUgx2hXoEVWgtOY=";
22   };
24   propagatedBuildInputs = [
25     azure-core
26     isodate
27     typing-extensions
28     yarl
29   ];
31   # Module has no tests
32   doCheck = false;
34   pythonImportsCheck = [ "azure.data.tables" ];
36   meta = with lib; {
37     description = "NoSQL data storage service that can be accessed from anywhere";
38     homepage = "https://github.com/Azure/azure-sdk-for-python";
39     changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-data-tables_${version}/sdk/tables/azure-data-tables/CHANGELOG.md";
40     license = licenses.mit;
41     maintainers = [ ];
42   };