nixpkgs/pkgs/development/python-modules/moto/default.nix

54 lines
1.3 KiB
Nix
Raw Normal View History

{ buildPythonPackage, fetchPypi, jinja2, werkzeug, flask
, requests, pytz, backports_tempfile, cookies, jsondiff, botocore, aws-xray-sdk, docker, responses
2018-08-30 18:09:45 +01:00
, six, boto, httpretty, xmltodict, nose, sure, boto3, freezegun, dateutil, mock, pyaml, python-jose }:
2017-09-15 14:15:54 +01:00
buildPythonPackage rec {
pname = "moto";
2018-11-11 13:47:26 +00:00
version = "1.3.7";
2017-12-30 11:24:45 +00:00
2017-09-15 14:15:54 +01:00
src = fetchPypi {
inherit pname version;
2018-11-11 13:47:26 +00:00
sha256 = "129de2e04cb250d9f8b2c722ec152ed1b5426ef179b4ebb03e9ec36e6eb3fcc5";
2017-09-15 14:15:54 +01:00
};
2018-04-07 11:25:04 +01:00
postPatch = ''
# regarding aws-xray-sdk: https://github.com/spulec/moto/commit/31eac49e1555c5345021a252cb0c95043197ea16
# regarding python-jose: https://github.com/spulec/moto/pull/1927
2018-04-07 11:25:04 +01:00
substituteInPlace setup.py \
--replace "aws-xray-sdk<0.96," "aws-xray-sdk" \
--replace "jsondiff==1.1.1" "jsondiff>=1.1.1" \
--replace "python-jose<3.0.0" "python-jose<4.0.0"
2018-04-07 11:25:04 +01:00
'';
2017-09-15 14:15:54 +01:00
propagatedBuildInputs = [
2017-12-30 11:24:45 +00:00
aws-xray-sdk
2017-09-15 14:15:54 +01:00
boto
2017-12-30 11:24:45 +00:00
boto3
2017-09-15 14:15:54 +01:00
dateutil
flask
httpretty
jinja2
pytz
werkzeug
requests
six
xmltodict
2017-12-30 11:24:45 +00:00
mock
pyaml
backports_tempfile
cookies
jsondiff
botocore
docker
responses
2018-08-30 18:09:45 +01:00
python-jose
2017-09-15 14:15:54 +01:00
];
checkInputs = [ boto3 nose sure freezegun ];
checkPhase = "nosetests";
# TODO: make this true; I think lots of the tests want network access but we can probably run the others
doCheck = false;
}