From 23b9694d346073bd663eabe14fde7b7e7805435f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 18 Jan 2022 23:23:10 +0100 Subject: [PATCH] python3Packages.types-tabulate: add pythonImportsCheck --- pkgs/development/python-modules/types-freezegun/default.nix | 1 + pkgs/development/python-modules/types-tabulate/default.nix | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/types-freezegun/default.nix b/pkgs/development/python-modules/types-freezegun/default.nix index 89672d26e8b2..dadbf652fc05 100644 --- a/pkgs/development/python-modules/types-freezegun/default.nix +++ b/pkgs/development/python-modules/types-freezegun/default.nix @@ -6,6 +6,7 @@ buildPythonPackage rec { pname = "types-freezegun"; version = "1.1.6"; + format = "setuptools"; src = fetchPypi { inherit pname version; diff --git a/pkgs/development/python-modules/types-tabulate/default.nix b/pkgs/development/python-modules/types-tabulate/default.nix index 504ca4f8eb8d..9e5c9b628b2d 100644 --- a/pkgs/development/python-modules/types-tabulate/default.nix +++ b/pkgs/development/python-modules/types-tabulate/default.nix @@ -9,12 +9,16 @@ buildPythonPackage rec { src = fetchPypi { inherit pname version; - sha256 = "sha256-A/KDvzhOoSG3tqWK+zj03vl/MHBPyhOg2mhpNrDzkqw="; + hash = "sha256-A/KDvzhOoSG3tqWK+zj03vl/MHBPyhOg2mhpNrDzkqw="; }; # Module doesn't have tests doCheck = false; + pythonImportsCheck = [ + "tabulate-stubs" + ]; + meta = with lib; { description = "Typing stubs for tabulate"; homepage = "https://github.com/python/typeshed";