python3Packages.sanic-auth: 0.2.0 -> 0.3.0

Fixes all tests.
This commit is contained in:
Martin Weinelt 2021-01-07 13:40:40 +01:00
parent 31eeb468ed
commit 9ae9f922d5
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,18 +1,17 @@
{ lib, buildPythonPackage, fetchPypi, sanic }:
{ lib, buildPythonPackage, fetchPypi, sanic, pytestCheckHook }:
buildPythonPackage rec {
pname = "Sanic-Auth";
version = "0.2.0";
version = "0.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "b7cb9e93296c035ada0aa1ebfb33f9f7b62f7774c519e374b7fe703ff73589cb";
sha256 = "0dc24ynqjraqwgvyk0g9bj87zgpq4xnssl24hnsn7l5vlkmk8198";
};
propagatedBuildInputs = [ sanic ];
# all tests fail
doCheck = false;
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "sanic_auth" ];