Files
nixpkgs/pkgs/development/python-modules/clickclick/default.nix
T
Fernando Rodrigues 3562403503 treewide: fetchFromGitea -> fetchFromCodeberg
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>
2026-01-31 21:08:16 +11:00

55 lines
933 B
Nix

{
lib,
buildPythonPackage,
click,
fetchFromCodeberg,
flake8,
pytest-cov-stub,
pytestCheckHook,
pyyaml,
setuptools,
six,
}:
buildPythonPackage rec {
pname = "clickclick";
version = "20.10.2";
pyproject = true;
src = fetchFromCodeberg {
owner = "hjacobs";
repo = "python-clickclick";
rev = version;
hash = "sha256-gefU6CI4ibtvonsaKZmuffuUNUioBn5ODs72BI5zXOw=";
};
build-system = [ setuptools ];
dependencies = [
flake8
click
pyyaml
six
];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
];
pythonImportsCheck = [ "clickclick" ];
disabledTests = [
# Tests asserts on exact quoting style of output
"test_choice_default"
"test_cli"
];
meta = {
description = "Click command line utilities";
homepage = "https://codeberg.org/hjacobs/python-clickclick/";
license = lib.licenses.asl20;
maintainers = [ ];
};
}