python311Packages.archinfo: add backports-strenum
This commit is contained in:
parent
8718efadd1
commit
90c3c8ff8b
1 changed files with 6 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
|||
{ lib
|
||||
, backports-strenum
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pytestCheckHook
|
||||
|
@ -9,7 +10,7 @@
|
|||
buildPythonPackage rec {
|
||||
pname = "archinfo";
|
||||
version = "9.2.72";
|
||||
format = "pyproject";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
|
@ -24,6 +25,10 @@ buildPythonPackage rec {
|
|||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = lib.optionals (pythonOlder "3.11") [
|
||||
backports-strenum
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue