mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
Merge pull request #63356 from r-ryantm/auto-update/python3.7-falcon
python37Packages.falcon: 1.4.1 -> 2.0.0
This commit is contained in:
commit
6716a07448
@ -7,21 +7,18 @@
|
|||||||
, pyyaml
|
, pyyaml
|
||||||
, requests
|
, requests
|
||||||
, testtools
|
, testtools
|
||||||
, six
|
|
||||||
, python_mimeparse
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "falcon";
|
pname = "falcon";
|
||||||
version = "1.4.1";
|
version = "2.0.0";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "3981f609c0358a9fcdb25b0e7fab3d9e23019356fb429c635ce4133135ae1bc4";
|
sha256 = "eea593cf466b9c126ce667f6d30503624ef24459f118c75594a69353b6c3d5fc";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [coverage ddt nose pyyaml requests testtools];
|
checkInputs = [coverage ddt nose pyyaml requests testtools];
|
||||||
propagatedBuildInputs = [ six python_mimeparse ];
|
|
||||||
|
|
||||||
# The travis build fails since the migration from multiprocessing to threading for hosting the API under test.
|
# The travis build fails since the migration from multiprocessing to threading for hosting the API under test.
|
||||||
# OSError: [Errno 98] Address already in use
|
# OSError: [Errno 98] Address already in use
|
||||||
@ -29,7 +26,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "An unladen web framework for building APIs and app backends";
|
description = "An unladen web framework for building APIs and app backends";
|
||||||
homepage = http://falconframework.org;
|
homepage = "https://falconframework.org/";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ desiderius ];
|
maintainers = with maintainers; [ desiderius ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user