forked from mirrors/nixpkgs
python311Packages.ciscoconfparse: relax loguru constraint
This commit is contained in:
parent
476f3f2788
commit
b333c3f133
|
@ -1,13 +1,14 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, dnspython
|
||||
, deprecat
|
||||
, dnspython
|
||||
, fetchFromGitHub
|
||||
, loguru
|
||||
, passlib
|
||||
, poetry-core
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, pythonRelaxDepsHook
|
||||
, toml
|
||||
}:
|
||||
|
||||
|
@ -25,12 +26,17 @@ buildPythonPackage rec {
|
|||
hash = "sha256-vL/CQdYcOP356EyRToviWylP1EBtxmeov6qkhfQNZ2Y=";
|
||||
};
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"loguru"
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs tests
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
poetry-core
|
||||
pythonRelaxDepsHook
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
|
Loading…
Reference in a new issue