Files
nixpkgs/pkgs/development/python-modules/archinfo/default.nix
T
Martin Weinelt 72f39ea1b9 python3Packages.archinfo: 9.2.154 -> 9.2.193
This commit was automatically generated using update-python-libraries.
2026-02-01 16:41:40 +01:00

38 lines
751 B
Nix

{
lib,
backports-strenum,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "archinfo";
version = "9.2.193";
pyproject = true;
disabled = pythonOlder "3.12";
src = fetchFromGitHub {
owner = "angr";
repo = "archinfo";
tag = "v${version}";
hash = "sha256-n7tbm+BHeCtKwsqcj56LB4YyQZRAp6Ehj7m91QFQrFM=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "archinfo" ];
meta = {
description = "Classes with architecture-specific information";
homepage = "https://github.com/angr/archinfo";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ fab ];
};
}