Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
841 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "annexremote";
version = "1.6.6";
pyproject = true;
src = fetchFromGitHub {
owner = "Lykos153";
repo = "AnnexRemote";
tag = "v${version}";
hash = "sha256-RShDcqAjG+ujGzWu5S9za24WSsIWctqi3nWQ8EU4DTo=";
};
build-system = [
setuptools
setuptools-scm
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "annexremote" ];
meta = with lib; {
description = "Helper module to easily develop git-annex remotes";
homepage = "https://github.com/Lykos153/AnnexRemote";
changelog = "https://github.com/Lykos153/AnnexRemote/releases/tag/v${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ montag451 ];
};
}