about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-12-22 03:35:26 +0100
committerGitHub <noreply@github.com>2022-12-22 03:35:26 +0100
commitd29a5ea70a6ec256e4e39b8b21e2b61cbb843c77 (patch)
tree5d1be12d4275ab6f2446839b5a990a7d98ac70a6
parent574ff7d8b84c3e81b6a5e32a6d1df2921c6452fd (diff)
parent4afecd32e6a1ded3a55dfd3a41cd37d72baccda0 (diff)
Merge pull request #206147 from SuperSandro2000/python3Packages.twine
-rw-r--r--pkgs/development/python-modules/twine/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/twine/default.nix b/pkgs/development/python-modules/twine/default.nix
index c3e4682d5a7ec..5e51082ed6acd 100644
--- a/pkgs/development/python-modules/twine/default.nix
+++ b/pkgs/development/python-modules/twine/default.nix
@@ -16,13 +16,13 @@
 
 buildPythonPackage rec {
   pname = "twine";
-  version = "4.0.1";
+  version = "4.0.2";
   format = "pyproject";
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-lrHPEveuYRpKQLaujpVwIV2v8GEYKPX+HzehYlWrJKA=";
+    sha256 = "sha256-nhAu9f3VogZh64j61GM4gGw70yzx23KWA/42l7G8g8g=";
   };
 
   nativeBuildInputs = [ setuptools-scm ];