Merge pull request #155528 from fabaff/pic-types-freezegun

python3Packages.types-freezegun: add pythonImportsCheck
This commit is contained in:
Fabian Affolter 2022-01-19 20:06:07 +01:00 committed by GitHub
commit a11d9fcd1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,12 +10,16 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
sha256 = "0kxiv0yjbbvp1zx694ir149b26kjzvb6600fh397v32b8jvs8w2w";
hash = "sha256-XHCkt0RLjH3SgA4AY9b+chqxEgk5kmT6D3evJT3YsU8=";
};
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [
"freezegun-stubs"
];
meta = with lib; {
description = "Typing stubs for freezegun";
homepage = "https://github.com/python/typeshed";