1{ lib
2, buildPythonPackage
3, fetchPypi
4, aniso8601
5, flask
6, pytz
7, six
8, blinker
9, mock
10, nose
11, pytestCheckHook
12}:
13
14buildPythonPackage rec {
15 pname = "Flask-RESTful";
16 version = "0.3.9";
17
18 src = fetchPypi {
19 inherit pname version;
20 sha256 = "0gm5dz088v3d2k1dkcp9b3nnqpkk0fp2jly870hijj2xhc5nbv6c";
21 };
22
23 propagatedBuildInputs = [
24 aniso8601
25 flask
26 pytz
27 six
28 ];
29
30 checkInputs = [
31 pytestCheckHook
32 mock
33 nose
34 blinker
35 ];
36
37 meta = with lib; {
38 homepage = "https://flask-restful.readthedocs.io";
39 description = "Simple framework for creating REST APIs";
40 longDescription = ''
41 Flask-RESTful provides the building blocks for creating a great
42 REST API.
43 '';
44 license = licenses.bsd3;
45 };
46}