2021-11-13 22:28:25 +00:00
|
|
|
{ lib, fetchFromGitHub, python3 }:
|
2020-11-01 20:28:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
py = python3.override {
|
|
|
|
packageOverrides = self: super: {
|
|
|
|
self = py;
|
|
|
|
|
|
|
|
# not compatible with prompt_toolkit >=2.0
|
2021-07-22 15:02:31 +00:00
|
|
|
prompt-toolkit = super.prompt-toolkit.overridePythonAttrs (oldAttrs: rec {
|
2020-11-01 20:28:56 +00:00
|
|
|
name = "${oldAttrs.pname}-${version}";
|
|
|
|
version = "1.0.18";
|
|
|
|
src = oldAttrs.src.override {
|
|
|
|
inherit version;
|
2023-03-09 23:43:05 +00:00
|
|
|
hash = "sha256-3U/KAsgGlJetkxotCZFMaw0bUBUc6Ha8Fb3kx0cJASY=";
|
2020-11-01 20:28:56 +00:00
|
|
|
};
|
|
|
|
});
|
2022-01-16 06:34:26 +00:00
|
|
|
# Use click 7
|
2022-06-06 18:41:55 +00:00
|
|
|
click = super.click.overridePythonAttrs (old: rec {
|
|
|
|
version = "7.1.2";
|
|
|
|
src = old.src.override {
|
|
|
|
inherit version;
|
2023-03-09 23:43:05 +00:00
|
|
|
hash = "sha256-0rUlXHxjSbwb0eWeCM0SrLvWPOZJ8liHVXg6qU37axo=";
|
2022-06-06 18:41:55 +00:00
|
|
|
};
|
|
|
|
});
|
2020-11-01 20:28:56 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
|
|
with py.pkgs;
|
2016-04-22 10:19:18 +00:00
|
|
|
|
2017-12-31 12:55:27 +00:00
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "haxor-news";
|
2020-11-01 20:28:56 +00:00
|
|
|
version = "unstable-2020-10-20";
|
|
|
|
|
|
|
|
# haven't done a stable release in 3+ years, but actively developed
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "donnemartin";
|
|
|
|
repo = pname;
|
|
|
|
rev = "811a5804c09406465b2b02eab638c08bf5c4fa7f";
|
2023-03-09 23:43:05 +00:00
|
|
|
hash = "sha256-5v61b49ttwqPOvtoykJBBzwVSi7S8ARlakccMr12bbw=";
|
2019-02-03 15:25:17 +00:00
|
|
|
};
|
|
|
|
|
2017-12-31 12:55:27 +00:00
|
|
|
propagatedBuildInputs = [
|
2016-04-22 10:19:18 +00:00
|
|
|
click
|
|
|
|
colorama
|
2017-05-07 10:55:45 +00:00
|
|
|
requests
|
2016-04-22 10:19:18 +00:00
|
|
|
pygments
|
2021-07-22 15:02:31 +00:00
|
|
|
prompt-toolkit
|
2016-04-22 10:19:18 +00:00
|
|
|
six
|
|
|
|
];
|
|
|
|
|
2020-11-01 20:28:56 +00:00
|
|
|
# will fail without pre-seeded config files
|
2018-02-21 12:28:15 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [ unittestCheckHook mock ];
|
2017-12-31 12:55:27 +00:00
|
|
|
|
2022-08-06 16:32:04 +00:00
|
|
|
unittestFlagsArray = [ "-s" "tests" "-v" ];
|
2017-12-31 12:55:27 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/donnemartin/haxor-news";
|
2016-04-22 10:19:18 +00:00
|
|
|
description = "Browse Hacker News like a haxor";
|
|
|
|
license = licenses.asl20;
|
2019-02-20 18:52:48 +00:00
|
|
|
maintainers = with maintainers; [ matthiasbeyer ];
|
2016-04-22 10:19:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|