pythonPackages.google-i18n-address: Use pytestCheckHook

This commit is contained in:
Sandro Jäckel 2021-01-05 16:19:05 +01:00
parent 37206fb465
commit d5942f037c
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -1,4 +1,4 @@
{ buildPythonPackage, fetchPypi, lib, requests, pytest, pytestcov, mock }: { buildPythonPackage, fetchPypi, lib, requests, pytestCheckHook, mock }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "google-i18n-address"; pname = "google-i18n-address";
@ -11,12 +11,12 @@ buildPythonPackage rec {
propagatedBuildInputs = [ requests ]; propagatedBuildInputs = [ requests ];
checkInputs = [ pytest pytestcov mock ]; checkInputs = [ pytestCheckHook mock ];
meta = with lib; { meta = with lib; {
description = "Google's i18n address data packaged for Python"; description = "Google's i18n address data packaged for Python";
homepage = "https://pypi.org/project/google-i18n-address/"; homepage = "https://pypi.org/project/google-i18n-address/";
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ SuperSandro2000 ];
license = licenses.bsd3; license = licenses.bsd3;
}; };
} }