pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / python-modules / types-freezegun / default.nix
blob26456f53f6d74e16c2b3c5b674729a0c0813b4db
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "types-freezegun";
9   version = "1.1.10";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-yzotLu6VDqy6rAZzq1BJmCM2XOuMZVursVRKQURkCew=";
15   };
17   # Module doesn't have tests
18   doCheck = false;
20   pythonImportsCheck = [ "freezegun-stubs" ];
22   meta = with lib; {
23     description = "Typing stubs for freezegun";
24     homepage = "https://github.com/python/typeshed";
25     license = licenses.asl20;
26     maintainers = with maintainers; [ jpetrucciani ];
27   };