python: moto: 0.4.31 -> 1.1.25

This commit is contained in:
Frederik Rietdijk 2017-12-30 12:24:45 +01:00
parent 364e5bce94
commit ea8b00a7fe

View File

@ -1,17 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi, jinja2, werkzeug, flask, requests, pytz { stdenv, buildPythonPackage, fetchPypi, jinja2, werkzeug, flask
, six, boto, httpretty, xmltodict, nose, sure, boto3, freezegun, dateutil }: , requests, pytz, backports_tempfile, cookies, jsondiff, botocore, aws-xray-sdk, docker
, six, boto, httpretty, xmltodict, nose, sure, boto3, freezegun, dateutil, mock, pyaml }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "moto"; pname = "moto";
version = "0.4.31"; version = "1.1.25";
name = "moto-${version}";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "19s8hfz4mzzzdksa0ddlvrga5mxdaqahk89p5l29a5id8127shr8"; sha256 = "d427d6e1a81e926c2b6a071453807b05f4736d65068493e1f3055ac7ee24ea21";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
aws-xray-sdk
boto boto
boto3
dateutil dateutil
flask flask
httpretty httpretty
@ -21,6 +24,13 @@ buildPythonPackage rec {
requests requests
six six
xmltodict xmltodict
mock
pyaml
backports_tempfile
cookies
jsondiff
botocore
docker
]; ];
checkInputs = [ boto3 nose sure freezegun ]; checkInputs = [ boto3 nose sure freezegun ];