summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-05-27 23:06:39 +0200
committerGitHub <noreply@github.com>2022-05-27 23:06:39 +0200
commitcd52b647b6685aa15dba0e391f1f700e0122cd0a (patch)
tree7cac81ecd64eb72d2e3c66dceadb8d34d48bfdf2
parent8229c0ea67ef71a59e6f4c61f284eed02fc2c495 (diff)
downloadnixpkgs-cd52b647b6685aa15dba0e391f1f700e0122cd0a.tar
nixpkgs-cd52b647b6685aa15dba0e391f1f700e0122cd0a.tar.gz
nixpkgs-cd52b647b6685aa15dba0e391f1f700e0122cd0a.tar.bz2
nixpkgs-cd52b647b6685aa15dba0e391f1f700e0122cd0a.tar.lz
nixpkgs-cd52b647b6685aa15dba0e391f1f700e0122cd0a.tar.xz
nixpkgs-cd52b647b6685aa15dba0e391f1f700e0122cd0a.tar.zst
nixpkgs-cd52b647b6685aa15dba0e391f1f700e0122cd0a.zip
python310Packages.types-dateutil: update pname
-rw-r--r--pkgs/development/python-modules/types-dateutil/default.nix13
1 files changed, 8 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/types-dateutil/default.nix b/pkgs/development/python-modules/types-dateutil/default.nix
index d6fff4caa90..c51b183552d 100644
--- a/pkgs/development/python-modules/types-dateutil/default.nix
+++ b/pkgs/development/python-modules/types-dateutil/default.nix
@@ -4,16 +4,19 @@
 }:
 
 buildPythonPackage rec {
-  pname = "types-python-dateutil";
-  version = "2.8.17";
+  pname = "types-dateutil";
+  version = "2.8.16";
   format = "setuptools";
 
   src = fetchPypi {
-    inherit pname version;
-    sha256 = "sha256-bFQmWiIWgd2H9h32dDvV6rBgzxtAhv9lwaj9dj7WNw4=";
+    pname = "types-python-dateutil";
+    inherit version;
+    hash = "sha256-OqrEwTjra47LwlUJluwl1uRbXTKIfR5pPQhC7i+mWdI=";
   };
 
-  pythonImportsCheck = [ "dateutil-stubs" ];
+  pythonImportsCheck = [
+    "dateutil-stubs"
+  ];
 
   meta = with lib; {
     description = "Typing stubs for python-dateutil";