Merge pull request #155422 from jpetrucciani/add_types-freezegun

python3Packages.types-freezegun: init at 1.1.6
This commit is contained in:
Fabian Affolter 2022-01-18 00:21:13 +01:00 committed by GitHub
commit 004eff765c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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 { };