nixpkgs/pkgs/applications/misc/urlscan/default.nix
Johannes Frankenau 063f110e17 urlscan: 0.8.3 -> 0.8.6 (#27102)
* urlscan: 0.8.3 -> 0.8.6

Moved from python-packages.nix to all-packages.nix because this is not
a Python library but just a Python application.

* Update default.nix

* Update all-packages.nix

* Update default.nix

* Update all-packages.nix
2017-07-04 09:31:36 +02:00

22 lines
564 B
Nix

{ stdenv, python3Packages, fetchFromGitHub }:
python3Packages.buildPythonApplication rec {
name = "urlscan-${version}";
version = "0.8.6";
src = fetchFromGitHub {
owner = "firecat53";
repo = "urlscan";
rev = version;
sha256 = "1v26fni64n0lbv37m35plh2bsrvhpb4ibgmg2mv05qfc3df721s5";
};
propagatedBuildInputs = [ python3Packages.urwid ];
meta = with stdenv.lib; {
description = "Mutt and terminal url selector (similar to urlview)";
license = licenses.gpl2;
maintainers = with maintainers; [ dpaetzel jfrankenau ];
};
}