1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, coverage
5, ddt
6, nose
7, pyyaml
8, requests
9, testtools
10}:
11
12buildPythonPackage rec {
13 pname = "falcon";
14 version = "2.0.0";
15
16 src = fetchPypi {
17 inherit pname version;
18 sha256 = "eea593cf466b9c126ce667f6d30503624ef24459f118c75594a69353b6c3d5fc";
19 };
20
21 checkInputs = [coverage ddt nose pyyaml requests testtools];
22
23 # The travis build fails since the migration from multiprocessing to threading for hosting the API under test.
24 # OSError: [Errno 98] Address already in use
25 doCheck = false;
26
27 meta = with stdenv.lib; {
28 description = "An unladen web framework for building APIs and app backends";
29 homepage = "https://falconframework.org/";
30 license = licenses.asl20;
31 maintainers = with maintainers; [ desiderius ];
32 };
33
34}