Merge pull request #280746 from fabaff/weasel-fix

python311Packages.weasel: relax constraint for cloudpathlib

authored by Nick Cao and committed by GitHub 14ec4582 4f8c1b3f

+12 -7
+12 -7
pkgs/development/python-modules/weasel/default.nix
··· 1 { lib 2 , buildPythonPackage 3 - , pythonOlder 4 - , fetchFromGitHub 5 - , setuptools 6 - , wheel 7 , cloudpathlib 8 , confection 9 , packaging 10 , pydantic 11 , requests 12 , smart-open 13 , srsly 14 , typer 15 , wasabi 16 - , pytestCheckHook 17 }: 18 19 buildPythonPackage rec { ··· 30 hash = "sha256-6Ck8R10/YW2Nc6acNk2bzgyqSg+OPqwyJjhUgXP/umw="; 31 }; 32 33 nativeBuildInputs = [ 34 setuptools 35 - wheel 36 ]; 37 38 propagatedBuildInputs = [ ··· 59 ]; 60 61 meta = with lib; { 62 - description = "Weasel: A small and easy workflow system"; 63 homepage = "https://github.com/explosion/weasel/"; 64 license = licenses.mit; 65 maintainers = with maintainers; [ GaetanLepage ]; 66 };
··· 1 { lib 2 , buildPythonPackage 3 , cloudpathlib 4 , confection 5 + , fetchFromGitHub 6 , packaging 7 , pydantic 8 + , pytestCheckHook 9 + , pythonOlder 10 + , pythonRelaxDepsHook 11 , requests 12 + , setuptools 13 , smart-open 14 , srsly 15 , typer 16 , wasabi 17 }: 18 19 buildPythonPackage rec { ··· 30 hash = "sha256-6Ck8R10/YW2Nc6acNk2bzgyqSg+OPqwyJjhUgXP/umw="; 31 }; 32 33 + pythonRelaxDeps = [ 34 + "cloudpathlib" 35 + ]; 36 + 37 nativeBuildInputs = [ 38 + pythonRelaxDepsHook 39 setuptools 40 ]; 41 42 propagatedBuildInputs = [ ··· 63 ]; 64 65 meta = with lib; { 66 + description = "A small and easy workflow system"; 67 homepage = "https://github.com/explosion/weasel/"; 68 + changelog = "https://github.com/explosion/weasel/releases/tag/v${version}"; 69 license = licenses.mit; 70 maintainers = with maintainers; [ GaetanLepage ]; 71 };