3562403503
Most packages that used fetchFromGitea fetch their sources from Codeberg, so might as well migrate them.
The following command was used for this treewide:
```fish
for i in (rg 'fetchFromGitea \{\n *domain = "codeberg.org";' --multiline --files-with-matches)
sed -z 's/fetchFromGitea {\n *domain = "codeberg.org";/fetchFromCodeberg {/g' $i > $i.tmp && mv $i.tmp $i
sed -i 's/fetchFromGitea/fetchFromCodeberg/g' $i
end
```
The following paths were manually edited:
* pkgs/by-name/xr/xrsh/package.nix
* pkgs/applications/networking/browsers/librewolf/src.nix
* pkgs/by-name/go/gotosocial/package.nix
* pkgs/by-name/ka/katawa-shoujo-re-engineered/package.nix
Co-authored-by: Gutyina Gergő <gutyina.gergo.2@gmail.com>
Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
58 lines
1.2 KiB
Nix
58 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromCodeberg,
|
|
setuptools,
|
|
setuptools-scm,
|
|
hypothesis,
|
|
pytest-timeout,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "multivolumefile";
|
|
version = "0.2.3";
|
|
pyproject = true;
|
|
|
|
src = fetchFromCodeberg {
|
|
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
|
|
];
|
|
};
|
|
}
|