From e5d668a1f8f89b9c854c49a1840f93e155e4e9a4 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 28 Apr 2023 10:15:17 +0200 Subject: [PATCH] python310Packages.authheaders: enable tests --- .../python-modules/authheaders/default.nix | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/authheaders/default.nix b/pkgs/development/python-modules/authheaders/default.nix index 43d043cf26ce..37e81f714290 100644 --- a/pkgs/development/python-modules/authheaders/default.nix +++ b/pkgs/development/python-modules/authheaders/default.nix @@ -1,11 +1,12 @@ { lib -, buildPythonPackage -, fetchPypi , authres -, dnspython +, buildPythonPackage , dkimpy +, dnspython +, fetchFromGitHub , publicsuffix2 , pythonOlder +, pytestCheckHook }: buildPythonPackage rec { @@ -15,9 +16,11 @@ buildPythonPackage rec { disabled = pythonOlder "3.7"; - src = fetchPypi { - inherit pname version; - hash = "sha256-kAzuiKYeZH74Tr38vO4BVDIHRNjsHX1ukmhC9EcoO98="; + src = fetchFromGitHub { + owner = "ValiMail"; + repo = "authentication-headers"; + rev = "refs/tags/${version}"; + hash = "sha256-vtLt7JUdLF0gBWgMzP65UAR6A9BnTech5n0alFErcSQ="; }; propagatedBuildInputs = [ @@ -27,6 +30,10 @@ buildPythonPackage rec { publicsuffix2 ]; + nativeCheckInputs = [ + pytestCheckHook + ]; + pythonImportsCheck = [ "authheaders" ];