mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
Merge pull request #14889 from matthiasbeyer/add-haxor-news
haxor-news: init at 0.3.1
This commit is contained in:
commit
1e68008503
28
pkgs/applications/misc/haxor-news/default.nix
Normal file
28
pkgs/applications/misc/haxor-news/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{ stdenv, fetchurl, pythonPackages }:
|
||||||
|
|
||||||
|
pythonPackages.buildPythonApplication rec {
|
||||||
|
version = "0.3.1";
|
||||||
|
name = "haxor-news-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/donnemartin/haxor-news/archive/0.3.1.tar.gz";
|
||||||
|
sha256 = "0jglx8fy38sjyszvvg7mvmyk66l53kyq4i09hmgdz7hb1hrm9m2m";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with pythonPackages; [
|
||||||
|
click
|
||||||
|
colorama
|
||||||
|
requests2
|
||||||
|
pygments
|
||||||
|
prompt_toolkit_52
|
||||||
|
six
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/donnemartin/haxor-news";
|
||||||
|
description = "Browse Hacker News like a haxor";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ matthiasbeyer ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -7122,6 +7122,8 @@ in
|
||||||
|
|
||||||
hawknl = callPackage ../development/libraries/hawknl { };
|
hawknl = callPackage ../development/libraries/hawknl { };
|
||||||
|
|
||||||
|
haxor-news = callPackage ../applications/misc/haxor-news { };
|
||||||
|
|
||||||
herqq = callPackage ../development/libraries/herqq { };
|
herqq = callPackage ../development/libraries/herqq { };
|
||||||
|
|
||||||
heyefi = self.haskellPackages.heyefi;
|
heyefi = self.haskellPackages.heyefi;
|
||||||
|
|
Loading…
Reference in a new issue