python3Package.hug: 2.4.8 -> 2.6.0

This commit is contained in:
Jonathan Ringer 2019-09-13 10:07:30 -07:00
parent 39ee74629c
commit 8e06d7ee3b

View File

@ -1,27 +1,26 @@
{ stdenv { lib , buildPythonPackage, fetchPypi, isPy27
, buildPythonPackage
, fetchPypi
, isPy27
, falcon , falcon
, pytestrunner
, requests , requests
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "hug"; pname = "hug";
version = "2.4.8"; version = "2.6.0";
disabled = isPy27; disabled = isPy27;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "2b33904660d07df3a6a998a52d1a36e2855e56dc9ffc4eddb2158e32d1ce7621"; sha256 = "0iamrzjy8z1xibynkgfl6cn2sbm66awxbp75b26pi32fc41d0k50";
}; };
nativeBuildInputs = [ pytestrunner ];
propagatedBuildInputs = [ falcon requests ]; propagatedBuildInputs = [ falcon requests ];
# tests are not shipped in the tarball # tests are not shipped in the tarball
doCheck = false; doCheck = false;
meta = with stdenv.lib; { meta = with lib; {
description = "A Python framework that makes developing APIs as simple as possible, but no simpler"; description = "A Python framework that makes developing APIs as simple as possible, but no simpler";
homepage = https://github.com/timothycrosley/hug; homepage = https://github.com/timothycrosley/hug;
license = licenses.mit; license = licenses.mit;