Merge pull request #280746 from fabaff/weasel-fix
python311Packages.weasel: relax constraint for cloudpathlib
This commit is contained in:
commit
14ec45829c
@ -1,19 +1,19 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, pythonOlder
|
|
||||||
, fetchFromGitHub
|
|
||||||
, setuptools
|
|
||||||
, wheel
|
|
||||||
, 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 {
|
||||||
@ -30,9 +30,13 @@ buildPythonPackage rec {
|
|||||||
hash = "sha256-6Ck8R10/YW2Nc6acNk2bzgyqSg+OPqwyJjhUgXP/umw=";
|
hash = "sha256-6Ck8R10/YW2Nc6acNk2bzgyqSg+OPqwyJjhUgXP/umw=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pythonRelaxDeps = [
|
||||||
|
"cloudpathlib"
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
pythonRelaxDepsHook
|
||||||
setuptools
|
setuptools
|
||||||
wheel
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
@ -59,8 +63,9 @@ buildPythonPackage rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Weasel: A small and easy workflow system";
|
description = "A small and easy workflow system";
|
||||||
homepage = "https://github.com/explosion/weasel/";
|
homepage = "https://github.com/explosion/weasel/";
|
||||||
|
changelog = "https://github.com/explosion/weasel/releases/tag/v${version}";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ GaetanLepage ];
|
maintainers = with maintainers; [ GaetanLepage ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user