mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
32 lines
627 B
Nix
32 lines
627 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, nose
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "archinfo";
|
|
version = "9.0.9572";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "angr";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-OzgLGjEVOVRnQvWVcci8EGn6gtO8D8QoDnC9dfXGHZU=";
|
|
};
|
|
|
|
checkInputs = [
|
|
nose
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "archinfo" ];
|
|
|
|
meta = with lib; {
|
|
description = "Classes with architecture-specific information";
|
|
homepage = "https://github.com/angr/archinfo";
|
|
license = with licenses; [ bsd2 ];
|
|
maintainers = [ maintainers.fab ];
|
|
};
|
|
}
|