1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 22:50:49 +00:00

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 { buildPythonPackage rec {
pname = "Sanic-Auth"; pname = "Sanic-Auth";
version = "0.2.0"; version = "0.3.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "b7cb9e93296c035ada0aa1ebfb33f9f7b62f7774c519e374b7fe703ff73589cb"; sha256 = "0dc24ynqjraqwgvyk0g9bj87zgpq4xnssl24hnsn7l5vlkmk8198";
}; };
propagatedBuildInputs = [ sanic ]; propagatedBuildInputs = [ sanic ];
# all tests fail checkInputs = [ pytestCheckHook ];
doCheck = false;
pythonImportsCheck = [ "sanic_auth" ]; pythonImportsCheck = [ "sanic_auth" ];