python3Packages.archinfo: remove unused input

This commit is contained in:
Fabian Affolter 2022-04-23 12:50:00 +02:00 committed by Jonathan Ringer
parent ecc7c9533c
commit 9d5bd0bc2f

View file

@ -1,7 +1,6 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, fetchpatch
, pytestCheckHook , pytestCheckHook
, nose , nose
, pythonOlder , pythonOlder
@ -34,6 +33,6 @@ buildPythonPackage rec {
description = "Classes with architecture-specific information"; description = "Classes with architecture-specific information";
homepage = "https://github.com/angr/archinfo"; homepage = "https://github.com/angr/archinfo";
license = with licenses; [ bsd2 ]; license = with licenses; [ bsd2 ];
maintainers = [ maintainers.fab ]; maintainers = with maintainers; [ fab ];
}; };
} }