Merge pull request #108786 from fabaff/archinfo
python3Packages.archinfo: init at 9.0.5327
This commit is contained in:
commit
822b0c9430
2 changed files with 34 additions and 0 deletions
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -373,6 +373,8 @@ in {
|
||||||
|
|
||||||
arabic-reshaper = callPackage ../development/python-modules/arabic-reshaper { };
|
arabic-reshaper = callPackage ../development/python-modules/arabic-reshaper { };
|
||||||
|
|
||||||
|
archinfo = callPackage ../development/python-modules/archinfo { };
|
||||||
|
|
||||||
area = callPackage ../development/python-modules/area { };
|
area = callPackage ../development/python-modules/area { };
|
||||||
|
|
||||||
arelle = callPackage ../development/python-modules/arelle { gui = true; };
|
arelle = callPackage ../development/python-modules/arelle { gui = true; };
|
||||||
|
|
Loading…
Reference in a new issue