mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
python3Packages.archinfo: init at 9.0.5327
This commit is contained in:
parent
210b6509ed
commit
16ebe202d1
32
pkgs/development/python-modules/archinfo/default.nix
Normal file
32
pkgs/development/python-modules/archinfo/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pytestCheckHook
|
||||
, nose
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "archinfo";
|
||||
version = "9.0.5327";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "angr";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0r7nj2hf51c954ihfxyhpbz1sd9lrc6i9zfkz11s22wpggvp06mz";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -371,6 +371,8 @@ in {
|
||||
|
||||
arabic-reshaper = callPackage ../development/python-modules/arabic-reshaper { };
|
||||
|
||||
archinfo = callPackage ../development/python-modules/archinfo { };
|
||||
|
||||
area = callPackage ../development/python-modules/area { };
|
||||
|
||||
arelle = callPackage ../development/python-modules/arelle { gui = true; };
|
||||
|
Loading…
Reference in New Issue
Block a user