summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/archinfo/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/archinfo/default.nix')
-rw-r--r--pkgs/development/python-modules/archinfo/default.nix13
1 files changed, 4 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/archinfo/default.nix b/pkgs/development/python-modules/archinfo/default.nix
index 722780990a48..7677c1123e6a 100644
--- a/pkgs/development/python-modules/archinfo/default.nix
+++ b/pkgs/development/python-modules/archinfo/default.nix
@@ -6,37 +6,32 @@
pytestCheckHook,
pythonOlder,
setuptools,
- nix-update-script,
}:
buildPythonPackage rec {
pname = "archinfo";
- version = "9.2.148";
+ version = "9.2.150";
pyproject = true;
- disabled = pythonOlder "3.8";
+ disabled = pythonOlder "3.12";
src = fetchFromGitHub {
owner = "angr";
repo = "archinfo";
tag = "v${version}";
- hash = "sha256-htg7lZVRSPnPAcPzTddT/lQ7/9LfHEV40usKASA3EsE=";
+ hash = "sha256-FCawauMXhUfPsMdpRDgbZ5mUBGDBAwp1mVWkJ+UTuxs=";
};
build-system = [ setuptools ];
- dependencies = lib.optionals (pythonOlder "3.11") [ backports-strenum ];
-
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "archinfo" ];
- passthru.updateScript = nix-update-script { };
-
meta = with lib; {
description = "Classes with architecture-specific information";
homepage = "https://github.com/angr/archinfo";
- license = with licenses; [ bsd2 ];
+ license = licenses.bsd2;
maintainers = with maintainers; [ fab ];
};
}