about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-09-13 10:07:30 -0700
committerJonathan Ringer <jonringer117@gmail.com>2019-09-13 10:07:30 -0700
commit8e06d7ee3bac6755a3133ae7a272d45a3943f8d7 (patch)
tree50c056da4e5a7b065c05f056e8f3e1001b2fddd1
parent39ee74629cf552b17f25fc5d21c42e5a2de26b4d (diff)
downloadnixlib-8e06d7ee3bac6755a3133ae7a272d45a3943f8d7.tar
nixlib-8e06d7ee3bac6755a3133ae7a272d45a3943f8d7.tar.gz
nixlib-8e06d7ee3bac6755a3133ae7a272d45a3943f8d7.tar.bz2
nixlib-8e06d7ee3bac6755a3133ae7a272d45a3943f8d7.tar.lz
nixlib-8e06d7ee3bac6755a3133ae7a272d45a3943f8d7.tar.xz
nixlib-8e06d7ee3bac6755a3133ae7a272d45a3943f8d7.tar.zst
nixlib-8e06d7ee3bac6755a3133ae7a272d45a3943f8d7.zip
python3Package.hug: 2.4.8 -> 2.6.0
-rw-r--r--pkgs/development/python-modules/hug/default.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/hug/default.nix b/pkgs/development/python-modules/hug/default.nix
index 1b9542824c07..5638447bceb8 100644
--- a/pkgs/development/python-modules/hug/default.nix
+++ b/pkgs/development/python-modules/hug/default.nix
@@ -1,27 +1,26 @@
-{ stdenv
-, buildPythonPackage
-, fetchPypi
-, isPy27
+{ lib , buildPythonPackage, fetchPypi, isPy27
 , falcon
+, pytestrunner
 , requests
 }:
 
 buildPythonPackage rec {
   pname = "hug";
-  version = "2.4.8";
+  version = "2.6.0";
   disabled = isPy27;
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "2b33904660d07df3a6a998a52d1a36e2855e56dc9ffc4eddb2158e32d1ce7621";
+    sha256 = "0iamrzjy8z1xibynkgfl6cn2sbm66awxbp75b26pi32fc41d0k50";
   };
 
+  nativeBuildInputs = [ pytestrunner ];
   propagatedBuildInputs = [ falcon requests ];
 
   # tests are not shipped in the tarball
   doCheck = false;
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "A Python framework that makes developing APIs as simple as possible, but no simpler";
     homepage = https://github.com/timothycrosley/hug;
     license = licenses.mit;