python311Packages.weasel: relax constraint for cloudpathlib
Acc. to https://github.com/drivendataorg/cloudpathlib/releases/tag/v0.17.0 does 0.17.0 not contain breaking changes
This commit is contained in:
parent
42f9dfc75b
commit
44511ca9b6
1 changed files with 10 additions and 4 deletions
|
@ -1,18 +1,19 @@
|
||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, pythonOlder
|
|
||||||
, fetchFromGitHub
|
|
||||||
, setuptools
|
|
||||||
, cloudpathlib
|
, cloudpathlib
|
||||||
, confection
|
, confection
|
||||||
|
, fetchFromGitHub
|
||||||
, packaging
|
, packaging
|
||||||
, pydantic
|
, pydantic
|
||||||
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
|
, pythonRelaxDepsHook
|
||||||
, requests
|
, requests
|
||||||
|
, setuptools
|
||||||
, smart-open
|
, smart-open
|
||||||
, srsly
|
, srsly
|
||||||
, typer
|
, typer
|
||||||
, wasabi
|
, wasabi
|
||||||
, pytestCheckHook
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -29,7 +30,12 @@ buildPythonPackage rec {
|
||||||
hash = "sha256-6Ck8R10/YW2Nc6acNk2bzgyqSg+OPqwyJjhUgXP/umw=";
|
hash = "sha256-6Ck8R10/YW2Nc6acNk2bzgyqSg+OPqwyJjhUgXP/umw=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pythonRelaxDeps = [
|
||||||
|
"cloudpathlib"
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
pythonRelaxDepsHook
|
||||||
setuptools
|
setuptools
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue