python310Packages.archinfo: 9.2.14 -> 9.2.15

This commit is contained in:
Fabian Affolter 2022-08-26 14:05:53 +02:00
parent fb570e9074
commit 0278afdf5d

View File

@ -2,26 +2,24 @@
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, nose
, pythonOlder
}:
buildPythonPackage rec {
pname = "archinfo";
version = "9.2.14";
version = "9.2.15";
format = "pyproject";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "angr";
repo = pname;
rev = "v${version}";
hash = "sha256-kWZ5z9Tn0SAqrGP4gtGfPny+kj/2ibSdTwp+0RCx40s=";
hash = "sha256-K9EAyCvwgWhiZ+rkPKPGBr3lWYIIRCf0FAzPjIjrcU8=";
};
checkInputs = [
nose
pytestCheckHook
];