gazelle-origin: init at 3.0.0

This commit is contained in:
Kylie McClain 2023-01-14 19:46:11 -05:00
parent 3e0afdc596
commit 78eb8d6727
No known key found for this signature in database
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ lib
, buildPythonApplication
, fetchFromGitHub
, bencoder
, pyyaml
, requests
, setuptools
}:
buildPythonApplication rec {
pname = "gazelle-origin";
version = "3.0.0";
format = "setuptools";
src = fetchFromGitHub {
repo = pname;
# Use the spinfast319 fork, since it seems that upstream
# at <https://github.com/x1ppy/gazelle-origin> is inactive
owner = "spinfast319";
rev = version;
hash = "sha256-+yMKnfG2f+A1/MxSBFLaHfpCgI2m968iXqt+2QanM/c=";
};
propagatedBuildInputs = [
bencoder
pyyaml
requests
];
pythonImportsCheck = [ "gazelleorigin" ];
meta = with lib; {
description = "Tool for generating origin files using the API of Gazelle-based torrent trackers";
homepage = "https://github.com/spinfast319/gazelle-origin";
# TODO license is unspecified in the upstream, as well as the fork
license = licenses.unfree;
maintainers = with maintainers; [ somasis ];
};
}

View file

@ -28492,6 +28492,8 @@ with pkgs;
gauche = callPackage ../development/interpreters/gauche { };
gazelle-origin = python3Packages.callPackage ../tools/misc/gazelle-origin { };
gcal = callPackage ../applications/misc/gcal { };
gcstar = callPackage ../applications/misc/gcstar { };