1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages.sandic-auth: Disable tests cause they are failing all

This commit is contained in:
Sandro Jäckel 2021-01-06 11:35:45 +01:00
parent 50df630baa
commit ff6d908136
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, pytest, sanic }:
{ lib, buildPythonPackage, fetchPypi, sanic }:
buildPythonPackage rec {
pname = "Sanic-Auth";
@ -11,11 +11,10 @@ buildPythonPackage rec {
propagatedBuildInputs = [ sanic ];
checkInputs = [ pytest ];
# all tests fail
doCheck = false;
checkPhase = ''
pytest tests
'';
pythonImportsCheck = [ "sanic_auth" ];
meta = with lib; {
description = "Simple Authentication for Sanic";