nixpkgs/pkgs/development/python-modules/archinfo/default.nix

47 lines
862 B
Nix

{ lib
, backports-strenum
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "archinfo";
version = "9.2.98";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "angr";
repo = "archinfo";
rev = "refs/tags/v${version}";
hash = "sha256-EdVGm4453XxGrq2D1v5JzSZyroRNzluZ5/r74YAt5zU=";
};
build-system = [
setuptools
];
dependencies = lib.optionals (pythonOlder "3.11") [
backports-strenum
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"archinfo"
];
meta = with lib; {
description = "Classes with architecture-specific information";
homepage = "https://github.com/angr/archinfo";
license = with licenses; [ bsd2 ];
maintainers = with maintainers; [ fab ];
};
}