f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
29 lines
677 B
Nix
29 lines
677 B
Nix
{ stdenv, fetchurl, pythonPackages }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
version = "0.4.2";
|
|
name = "haxor-news-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/donnemartin/haxor-news/archive/${version}.tar.gz";
|
|
sha256 = "0543k5ys044f2a1q8k36djnnq2h2dffnwbkva9snjjy30nlwwdgs";
|
|
};
|
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
|
click
|
|
colorama
|
|
requests
|
|
pygments
|
|
prompt_toolkit
|
|
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 ];
|
|
};
|
|
|
|
}
|