scripts/pkgs_wip/torf.nix

56 lines
1.0 KiB
Nix

{
lib,
python3,
fetchFromGitHub,
}:
python3.pkgs.buildPythonApplication rec {
pname = "torf";
version = "4.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "rndusr";
repo = "torf";
rev = "v${version}";
hash = "sha256-vJapB4Tbn3tLLUIH9LemU9kTqG7TsByiotkWM52lsno=";
};
build-system = [
python3.pkgs.setuptools
];
dependencies = with python3.pkgs; [
flatbencode
];
optional-dependencies = with python3.pkgs; {
dev = [
coverage
flake8
isort
mypy
pytest
pytest-cov
pytest-httpserver
pytest-mock
pytest-xdist
ruff
tox
];
};
pythonImportsCheck = [
"torf"
];
meta = {
description = "Python module to create, parse and edit torrent files and magnet links";
homepage = "https://github.com/rndusr/torf";
changelog = "https://github.com/rndusr/torf/blob/${src.rev}/CHANGELOG";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ ];
mainProgram = "torf";
};
}