python310Packages.twine: 4.0.0 -> 4.0.1

authored by Sandro Jäckel and committed by Jonathan Ringer cbda7b33 d588e9ac

+4 -2
+4 -2
pkgs/development/python-modules/twine/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "twine"; 19 - version = "4.0.0"; 19 + version = "4.0.1"; 20 20 format = "pyproject"; 21 21 disabled = pythonOlder "3.7"; 22 22 23 23 src = fetchPypi { 24 24 inherit pname version; 25 - sha256 = "sha256-gXqgwL3AKl6+MgUeFo4jxxoGCDNOYkx5MBHxINu8Bbc="; 25 + sha256 = "sha256-lrHPEveuYRpKQLaujpVwIV2v8GEYKPX+HzehYlWrJKA="; 26 26 }; 27 27 28 28 nativeBuildInputs = [ setuptools-scm ]; ··· 41 41 42 42 # Requires network 43 43 doCheck = false; 44 + 45 + pythonImportsCheck = [ "twine" ]; 44 46 45 47 meta = { 46 48 description = "Collection of utilities for interacting with PyPI";