mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 23:54:01 +00:00
0215034f25
when they already rely on SRI hashes.
35 lines
686 B
Nix
35 lines
686 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, azure-core
|
|
, msrest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "azure-data-tables";
|
|
version = "12.4.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
extension = "zip";
|
|
hash = "sha256-Oz1dFbKpY+CbSTSx/iuiF/Kd2axRghwXVJ/K+HRwJDQ=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
azure-core
|
|
msrest
|
|
];
|
|
|
|
# has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "azure.data.tables" ];
|
|
|
|
meta = with lib; {
|
|
description = "NoSQL data storage service that can be accessed from anywhere";
|
|
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jonringer ];
|
|
};
|
|
}
|