pythonPackages.google-i18n-address: Use pytestCheckHook

wip/yesman
Sandro Jäckel 3 years ago
parent 37206fb465
commit d5942f037c
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
  1. 6
      pkgs/development/python-modules/google-i18n-address/default.nix

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

Loading…
Cancel
Save