34 lines
775 B
Nix
34 lines
775 B
Nix
|
{ lib
|
|||
|
, buildPythonPackage
|
|||
|
, botocore
|
|||
|
, fetchPypi
|
|||
|
, mock
|
|||
|
, mypy
|
|||
|
, python-dateutil
|
|||
|
, pytest
|
|||
|
, requests
|
|||
|
}:
|
|||
|
|
|||
|
buildPythonPackage rec {
|
|||
|
pname = "pynamodb";
|
|||
|
version = "4.2.0";
|
|||
|
|
|||
|
src = fetchPypi {
|
|||
|
inherit pname version;
|
|||
|
sha256 = "0njbh3h6696nq5palqa0b8s0fbsvhbawpzl923dnfsa9kgq5m294";
|
|||
|
};
|
|||
|
|
|||
|
propagatedBuildInputs = [ python-dateutil botocore ];
|
|||
|
checkInputs = [ requests mock pytest mypy ];
|
|||
|
|
|||
|
meta = with lib; {
|
|||
|
description = "A Pythonic interface for Amazon’s DynamoDB that supports Python 2 and 3.";
|
|||
|
longDescription = ''
|
|||
|
DynamoDB is a great NoSQL service provided by Amazon, but the API is
|
|||
|
verbose. PynamoDB presents you with a simple, elegant API.
|
|||
|
'';
|
|||
|
homepage = "http://jlafon.io/pynamodb.html";
|
|||
|
license = licenses.mit;
|
|||
|
};
|
|||
|
}
|