Merge pull request #301767 from fabaff/twtxt-fix

twtxt: refactor
This commit is contained in:
Fabian Affolter 2024-04-05 23:43:21 +02:00 committed by GitHub
commit 8d32f4f3c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 22 additions and 14 deletions

View File

@ -1,36 +1,44 @@
{ lib, fetchFromGitHub, buildPythonApplication, aiohttp, python-dateutil, humanize, click, pytestCheckHook, tox }:
{
lib,
fetchFromGitHub,
python3,
}:
buildPythonApplication rec {
python3.pkgs.buildPythonApplication rec {
pname = "twtxt";
version = "1.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "buckket";
repo = pname;
repo = "twtxt";
rev = "refs/tags/v${version}";
sha256 = "sha256-CbFh1o2Ijinfb8X+h1GP3Tp+8D0D3/Czt/Uatd1B4cw=";
};
# Relax some dependencies
postPatch = ''
substituteInPlace setup.py \
--replace 'aiohttp>=2.2.5,<3' 'aiohttp' \
--replace 'click>=6.7,<7' 'click' \
--replace 'humanize>=0.5.1,<1' 'humanize'
'';
build-system = with python3.pkgs; [ setuptools ];
propagatedBuildInputs = [ aiohttp python-dateutil humanize click ];
dependencies = with python3.pkgs; [
aiohttp
click
humanize
python-dateutil
setuptools
];
nativeCheckInputs = [ pytestCheckHook tox ];
nativeCheckInputs = with python3.pkgs; [ pytestCheckHook ];
pythonImportsCheck = [ "twtxt" ];
disabledTests = [
# Disable test using relative date and time
"test_tweet_relative_datetime"
# Disable test using relative date and time
"test_tweet_relative_datetime"
];
meta = with lib; {
description = "Decentralised, minimalist microblogging service for hackers";
homepage = "https://github.com/buckket/twtxt";
changelog = "https://github.com/buckket/twtxt/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
mainProgram = "twtxt";