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>
65 lines
1.1 KiB
Nix
65 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromCodeberg,
|
|
setuptools,
|
|
lark,
|
|
numpy,
|
|
sympy,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "liberty-parser";
|
|
version = "0.0.29";
|
|
pyproject = true;
|
|
|
|
src = fetchFromCodeberg {
|
|
owner = "tok";
|
|
repo = "liberty-parser";
|
|
tag = version;
|
|
hash = "sha256-rPEZIRxvmNrDTVD4NG7v2BT3jJXtTisfs4txCG4OfnQ=";
|
|
};
|
|
|
|
# Tests try to write to /tmp directly. use $TMPDIR instead.
|
|
postPatch = ''
|
|
substituteInPlace src/liberty/parser.py \
|
|
--replace-fail "/tmp" "$TMPDIR"
|
|
'';
|
|
|
|
build-system = [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = [
|
|
lark
|
|
numpy
|
|
sympy
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
enabledTestPaths = [
|
|
"src/liberty/*.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"liberty.parser"
|
|
];
|
|
|
|
meta = {
|
|
description = "Liberty parser for Python";
|
|
homepage = "https://codeberg.org/tok/liberty-parser";
|
|
license = with lib.licenses; [
|
|
asl20
|
|
cc-by-sa-40
|
|
cc0
|
|
gpl3Plus
|
|
];
|
|
maintainers = with lib.maintainers; [ eljamm ];
|
|
teams = with lib.teams; [ ngi ];
|
|
};
|
|
}
|