nixpkgs/pkgs/applications/networking/twtxt/default.nix

33 lines
925 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildPythonApplication, aiohttp, python-dateutil, humanize, click, pytestCheckHook, tox }:
2020-11-30 19:50:56 +00:00
buildPythonApplication rec {
2020-11-30 19:50:56 +00:00
pname = "twtxt";
version = "1.2.3";
2020-11-30 19:50:56 +00:00
src = fetchFromGitHub {
owner = "buckket";
2020-11-30 19:50:56 +00:00
repo = pname;
rev = "v${version}";
sha256 = "sha256-AdM95G2Vz3UbVPI7fs8/D78BMxscbTGrCpIyyHzSmho=";
2020-11-30 19:50:56 +00:00
};
# 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'
'';
2020-11-30 19:50:56 +00:00
propagatedBuildInputs = [ aiohttp python-dateutil humanize click ];
checkInputs = [ pytestCheckHook tox ];
2020-11-30 19:50:56 +00:00
meta = with lib; {
description = "Decentralised, minimalist microblogging service for hackers";
homepage = "https://github.com/buckket/twtxt";
2020-11-30 19:50:56 +00:00
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
};
}