python3Packages.autoflake: 1.4 -> 2.0.1

This commit is contained in:
Martin Weinelt 2023-02-27 02:14:07 +01:00
parent 61922aa864
commit 8733da2aff

View File

@ -1,19 +1,25 @@
{ lib
, buildPythonPackage
, fetchPypi
, hatchling
, pyflakes
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "autoflake";
version = "1.4";
version = "2.0.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-YaNTASz/arlMoGKCPR+y9pLErNpRx2/4Oo13kV+6Ueo=";
hash = "sha256-HOUgExt/OWkVJC/pHlciH01CQIUpu+Ouk62v7ShlkeA=";
};
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [
pyflakes
];