python3Packages.vulture: 2.4 -> 2.5

This commit is contained in:
Martin Weinelt
2022-07-21 22:35:22 +02:00
parent d5ef4af394
commit 75278e8a27
@@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, pint
, pythonOlder
, pytestCheckHook
, toml
@@ -8,14 +9,14 @@
buildPythonPackage rec {
pname = "vulture";
version = "2.4";
version = "2.5";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-gZQ5KUp2tOC44Ixw11VlqM49wfbgNVjtEjpfK7c3wOo=";
hash = "sha256-KDFpQFXrLjagnDt2gJNINxArm2wJaSBuOQLVE2Ehd8M=";
};
postPatch = ''
@@ -28,6 +29,7 @@ buildPythonPackage rec {
];
checkInputs = [
pint
pytestCheckHook
];