f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
72 lines
1.3 KiB
Nix
72 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
cloudpathlib,
|
|
confection,
|
|
fetchFromGitHub,
|
|
packaging,
|
|
pydantic,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
requests,
|
|
setuptools,
|
|
smart-open,
|
|
srsly,
|
|
typer,
|
|
wasabi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "weasel";
|
|
version = "0.3.4";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "explosion";
|
|
repo = "weasel";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-6Ck8R10/YW2Nc6acNk2bzgyqSg+OPqwyJjhUgXP/umw=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"cloudpathlib"
|
|
"smart-open"
|
|
"typer"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
cloudpathlib
|
|
confection
|
|
packaging
|
|
pydantic
|
|
requests
|
|
smart-open
|
|
srsly
|
|
typer
|
|
wasabi
|
|
];
|
|
|
|
pythonImportsCheck = [ "weasel" ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
disabledTests = [
|
|
# This test requires internet access
|
|
"test_project_assets"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Small and easy workflow system";
|
|
mainProgram = "weasel";
|
|
homepage = "https://github.com/explosion/weasel/";
|
|
changelog = "https://github.com/explosion/weasel/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ GaetanLepage ];
|
|
};
|
|
}
|