python3Packages.black: 21.8b0 -> 21.9b0

Fixes build issues after setuptools_scm update to 6.3.1.
This commit is contained in:
sveitser 2021-09-14 19:07:37 +08:00
parent df9a7e8f43
commit 79fb9a5fad
No known key found for this signature in database
GPG key ID: 584D5AC88FDC1991

View file

@ -20,13 +20,13 @@
buildPythonPackage rec {
pname = "black";
version = "21.8b0";
version = "21.9b0";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-VwYI0oqjrxeSuYxKM326xjZ4d7R7EriKtCCVz8GmJ8I=";
sha256 = "sha256-feTPx+trcQ3jJXEtQBJWiRAdIdJSg+7X6ZmHIs8Q65E=";
};
nativeBuildInputs = [ setuptools-scm ];