linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / falcon / default.nix
blobeb6cbfa242e1185e1b1f77a96496710b5202322e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , coverage
5 , ddt
6 , nose
7 , pyyaml
8 , requests
9 , testtools
12 buildPythonPackage rec {
13   pname = "falcon";
14   version = "2.0.0";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "eea593cf466b9c126ce667f6d30503624ef24459f118c75594a69353b6c3d5fc";
19   };
21   checkInputs = [coverage ddt nose pyyaml requests testtools];
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;
27   meta = with 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   };