Unverified Commit 8e7947fa authored by natsukium's avatar natsukium
Browse files

python311Packages.torrent-parser: refactor

parent 8973ad96
Loading
Loading
Loading
Loading
+21 −3
Original line number Diff line number Diff line
{ buildPythonPackage, lib, fetchFromGitHub }:
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "torrent-parser";
  version = "0.4.1";
  pyproject = true;

  # No tarballs on Pypi
  src = fetchFromGitHub {
    owner  = "7sDream";
    repo   = "torrent_parser";
    rev    = "v${version}";
    sha256 = "sha256-zM738r3o9dGZYoWLN7fM4E06m6YPcAODEkgDS6wU/Sc=";
    hash = "sha256-zM738r3o9dGZYoWLN7fM4E06m6YPcAODEkgDS6wU/Sc=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "torrent_parser"
  ];

  meta = {
    description = "A .torrent file parser and creator for both Python 2 and 3";
    homepage    = "https://github.com/7sDream/torrent_parser";
    changelog = "https://github.com/7sDream/torrent_parser/blob/${src.rev}/CHANGELOG.md";
    license     = lib.licenses.mit;
    maintainers = with lib.maintainers; [ ];
  };