about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-09-16 08:26:10 -0500
committerGitHub <noreply@github.com>2023-09-16 08:26:10 -0500
commit07ce583cdd73344bac5f5a28b124272d5db4e35c (patch)
treeff9b7b4383d16c9d3eac89d79de5d1080b1e9d3f
parent74489d7ff66172e843ec1e1d07ad2a958afa746d (diff)
parenta889a89d46acdf781cfd9e952d36b087c7737e62 (diff)
Merge pull request #255400 from r-ryantm/auto-update/python311Packages.types-mock
python311Packages.types-mock: 5.1.0.1 -> 5.1.0.2
-rw-r--r--pkgs/development/python-modules/types-mock/default.nix16
1 files changed, 10 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/types-mock/default.nix b/pkgs/development/python-modules/types-mock/default.nix
index f072c83916cce..23c742798166a 100644
--- a/pkgs/development/python-modules/types-mock/default.nix
+++ b/pkgs/development/python-modules/types-mock/default.nix
@@ -5,17 +5,21 @@
 
 buildPythonPackage rec {
   pname = "types-mock";
-  version = "5.1.0.1";
+  version = "5.1.0.2";
+  format = "setuptools";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-8H1Z3lDqgWq0A7pOJG/4CwCSY7N3vD93Tf3r8LQD+2A=";
+    hash = "sha256-3kjTdm5OMDTv2LJtqeCeSQjzHlMTel/i778fur7haZY=";
   };
 
-  meta = {
-    description = "This is a PEP 561 type stub package for the mock package. It can be used by type-checking tools like mypy, pyright, pytype, PyCharm, etc. to check code that uses mock.";
+  # Module has no tests
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Type stub package for the mock package";
     homepage = "https://pypi.org/project/types-mock";
-    license = lib.licenses.asl20;
-    maintainers = with lib.maintainers; [ ];
+    license = licenses.asl20;
+    maintainers = with maintainers; [ ];
   };
 }