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:
Fabian Affolter 2024-01-13 15:37:59 +01:00
parent 42f9dfc75b
commit 44511ca9b6

View file

@ -1,18 +1,19 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, setuptools
, cloudpathlib
, confection
, fetchFromGitHub
, packaging
, pydantic
, pytestCheckHook
, pythonOlder
, pythonRelaxDepsHook
, requests
, setuptools
, smart-open
, srsly
, typer
, wasabi
, pytestCheckHook
}:
buildPythonPackage rec {
@ -29,7 +30,12 @@ buildPythonPackage rec {
hash = "sha256-6Ck8R10/YW2Nc6acNk2bzgyqSg+OPqwyJjhUgXP/umw=";
};
pythonRelaxDeps = [
"cloudpathlib"
];
nativeBuildInputs = [
pythonRelaxDepsHook
setuptools
];