summary refs log tree commit diff
path: root/pkgs/development/python-modules/flask-restful/default.nix
blob: ec7e65aa4e438feadfa63ef6c59febcf515cdcca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ stdenv, buildPythonPackage, fetchPypi, isPy3k
, nose, mock, blinker
, flask, six, pytz, aniso8601, pycrypto
}:

buildPythonPackage rec {
  name = "${pname}-${version}";
  pname = "Flask-RESTful";
  version = "0.3.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "01rlvl2iq074ciyn4schmjip7cyplkwkysbb8f610zil06am35ap";
  };

# TypeError: Only byte strings can be passed to C code
  patchPhase = if isPy3k then ''
    rm tests/test_crypto.py tests/test_paging.py
    '' else null;
# Disable test broken with aniso > 3.0.0, can be removed when updating to a flask-restful version with commit 54979f0
  preCheck = ''
  substituteInPlace "./tests/test_inputs.py" --replace "test_bad_isointervals" "disabled_bad_isointervals"
  '';
  buildInputs = [ nose mock blinker ];
  propagatedBuildInputs = [ flask six pytz aniso8601 pycrypto ];
  PYTHON_EGG_CACHE = "`pwd`/.egg-cache";

  meta = with stdenv.lib; {
    homepage = "http://flask-restful.readthedocs.io/";
    description = "REST API building blocks for Flask";
    license = licenses.bsd3;
  };
}