Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
59 lines
1.3 KiB
Nix
59 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitea,
|
|
setuptools,
|
|
setuptools-scm,
|
|
hypothesis,
|
|
pytest-timeout,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "multivolumefile";
|
|
version = "0.2.3";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitea {
|
|
domain = "codeberg.org";
|
|
owner = "miurahr";
|
|
repo = "multivolume";
|
|
tag = "v${version}";
|
|
hash = "sha256-7gjfF7biQZOcph2dfwi2ouDn/uIYik/KBQ0k6u5Ne+Q=";
|
|
};
|
|
|
|
postPatch =
|
|
# Fix typo: `tools` -> `tool`
|
|
# upstream PR: https://codeberg.org/miurahr/multivolume/pulls/9
|
|
''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail 'tools.setuptools_scm' 'tool.setuptools_scm'
|
|
'';
|
|
|
|
build-system = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
hypothesis
|
|
pytest-timeout
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"multivolumefile"
|
|
];
|
|
|
|
meta = {
|
|
description = "Library to provide a file-object wrapping multiple files as virtually like as a single file";
|
|
homepage = "https://codeberg.org/miurahr/multivolume";
|
|
changelog = "https://codeberg.org/miurahr/multivolume/src/tag/v${version}/Changelog.rst#v${version}";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [
|
|
pitkling
|
|
PopeRigby
|
|
];
|
|
};
|
|
}
|