summary refs log tree commit diff
path: root/pkgs/development/python-modules/falcon
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-06-17 10:54:26 -0700
committerMario Rodas <marsam@users.noreply.github.com>2019-06-17 10:54:26 -0700
commit802b8890d290a74d1dadb6dd0e8f9e7a7416661b (patch)
tree0bcd1473d1cb66d8e026abf0102dca6c16d38826 /pkgs/development/python-modules/falcon
parent07b6eb696285159a79d797c397b44710a208a331 (diff)
downloadnixpkgs-802b8890d290a74d1dadb6dd0e8f9e7a7416661b.tar
nixpkgs-802b8890d290a74d1dadb6dd0e8f9e7a7416661b.tar.gz
nixpkgs-802b8890d290a74d1dadb6dd0e8f9e7a7416661b.tar.bz2
nixpkgs-802b8890d290a74d1dadb6dd0e8f9e7a7416661b.tar.lz
nixpkgs-802b8890d290a74d1dadb6dd0e8f9e7a7416661b.tar.xz
nixpkgs-802b8890d290a74d1dadb6dd0e8f9e7a7416661b.tar.zst
nixpkgs-802b8890d290a74d1dadb6dd0e8f9e7a7416661b.zip
python37Packages.falcon: 1.4.1 -> 2.0.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-falcon/versions
Diffstat (limited to 'pkgs/development/python-modules/falcon')
-rw-r--r--pkgs/development/python-modules/falcon/default.nix9
1 files changed, 3 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/falcon/default.nix b/pkgs/development/python-modules/falcon/default.nix
index 0d69a85a1e2..20a76777413 100644
--- a/pkgs/development/python-modules/falcon/default.nix
+++ b/pkgs/development/python-modules/falcon/default.nix
@@ -7,21 +7,18 @@
 , pyyaml
 , requests
 , testtools
-, six
-, python_mimeparse
 }:
 
 buildPythonPackage rec {
   pname = "falcon";
-  version = "1.4.1";
+  version = "2.0.0";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "3981f609c0358a9fcdb25b0e7fab3d9e23019356fb429c635ce4133135ae1bc4";
+    sha256 = "eea593cf466b9c126ce667f6d30503624ef24459f118c75594a69353b6c3d5fc";
   };
 
   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.
   # OSError: [Errno 98] Address already in use
@@ -29,7 +26,7 @@ buildPythonPackage rec {
 
   meta = with stdenv.lib; {
     description = "An unladen web framework for building APIs and app backends";
-    homepage = http://falconframework.org;
+    homepage = "https://falconframework.org/";
     license = licenses.asl20;
     maintainers = with maintainers; [ desiderius ];
   };