python: Werkzeug: 0.16.0 -> 0.16.1

This commit is contained in:
Frederik Rietdijk 2020-02-06 16:03:25 +01:00 committed by Frederik Rietdijk
parent 884ef918bf
commit 8cb273e094

View File

@ -1,18 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi { stdenv, buildPythonPackage, fetchPypi
, itsdangerous, hypothesis , itsdangerous, hypothesis
, pytest, requests }: , pytest, requests
, pytest-timeout
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "Werkzeug"; pname = "Werkzeug";
version = "0.16.0"; version = "0.16.1";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "7280924747b5733b246fe23972186c6b348f9ae29724135a6dfc1e53cea433e7"; sha256 = "b353856d37dec59d6511359f97f6a4b2468442e454bd1c98298ddce53cac1f04";
}; };
propagatedBuildInputs = [ itsdangerous ]; propagatedBuildInputs = [ itsdangerous ];
checkInputs = [ pytest requests hypothesis ]; checkInputs = [ pytest requests hypothesis pytest-timeout ];
checkPhase = '' checkPhase = ''
pytest ${stdenv.lib.optionalString stdenv.isDarwin "-k 'not test_get_machine_id'"} pytest ${stdenv.lib.optionalString stdenv.isDarwin "-k 'not test_get_machine_id'"}