Merge pull request #280746 from fabaff/weasel-fix

python311Packages.weasel: relax constraint for cloudpathlib
This commit is contained in:
Nick Cao 2024-01-14 11:22:14 -05:00 committed by GitHub
commit 14ec45829c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,19 +1,19 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, setuptools
, wheel
, cloudpathlib
, confection
, fetchFromGitHub
, packaging
, pydantic
, pytestCheckHook
, pythonOlder
, pythonRelaxDepsHook
, requests
, setuptools
, smart-open
, srsly
, typer
, wasabi
, pytestCheckHook
}:
buildPythonPackage rec {
@ -30,9 +30,13 @@ buildPythonPackage rec {
hash = "sha256-6Ck8R10/YW2Nc6acNk2bzgyqSg+OPqwyJjhUgXP/umw=";
};
pythonRelaxDeps = [
"cloudpathlib"
];
nativeBuildInputs = [
pythonRelaxDepsHook
setuptools
wheel
];
propagatedBuildInputs = [
@ -59,8 +63,9 @@ buildPythonPackage rec {
];
meta = with lib; {
description = "Weasel: A small and easy workflow system";
description = "A small and easy workflow system";
homepage = "https://github.com/explosion/weasel/";
changelog = "https://github.com/explosion/weasel/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ GaetanLepage ];
};