Merge pull request #116438 from dotlambda/tzlocal-pythonImportsCheck

pythonPackages.tzlocal: use pythonImportsCheck

authored by

Sandro and committed by
GitHub
6d1b0c1c 8eadf113

+3
+3
pkgs/development/python-modules/tzlocal/default.nix
··· 15 # test fail (timezone test fail) 16 doCheck = false; 17 18 meta = with lib; { 19 description = "Tzinfo object for the local timezone"; 20 homepage = "https://github.com/regebro/tzlocal"; 21 license = licenses.cddl; 22 }; 23 }
··· 15 # test fail (timezone test fail) 16 doCheck = false; 17 18 + pythonImportsCheck = [ "tzlocal" ]; 19 + 20 meta = with lib; { 21 description = "Tzinfo object for the local timezone"; 22 homepage = "https://github.com/regebro/tzlocal"; 23 license = licenses.cddl; 24 + maintainers = with maintainers; [ dotlambda ]; 25 }; 26 }