python3Packages.types-freezegun: init at 1.1.6

This commit is contained in:
jacobi petrucciani 2022-01-17 16:44:09 -05:00
parent e5b47c5c21
commit 7cf0869f41
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-freezegun";
version = "1.1.6";
src = fetchPypi {
inherit pname version;
sha256 = "0kxiv0yjbbvp1zx694ir149b26kjzvb6600fh397v32b8jvs8w2w";
};
# Module doesn't have tests
doCheck = false;
meta = with lib; {
description = "Typing stubs for freezegun";
homepage = "https://github.com/python/typeshed";
license = licenses.asl20;
maintainers = with maintainers; [ jpetrucciani ];
};
}

View file

@ -9935,6 +9935,8 @@ in {
types-decorator = callPackage ../development/python-modules/types-decorator { };
types-freezegun = callPackage ../development/python-modules/types-freezegun { };
types-futures = callPackage ../development/python-modules/types-futures { };
types-protobuf = callPackage ../development/python-modules/types-protobuf { };