mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 12:22:37 +03:00
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
This commit is contained in:
parent
7e86d0e539
commit
063f110e17
@ -1,25 +1,21 @@
|
||||
{ stdenv, buildPythonPackage, fetchFromGitHub, urwid, pythonOlder }:
|
||||
{ stdenv, python3Packages, fetchFromGitHub }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
python3Packages.buildPythonApplication rec {
|
||||
name = "urlscan-${version}";
|
||||
version = "0.8.3";
|
||||
version = "0.8.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "firecat53";
|
||||
repo = "urlscan";
|
||||
rev = version;
|
||||
# (equivalent but less nice(?): rev = "00333f6d03bf3151c9884ec778715fc605f58cc5")
|
||||
sha256 = "0l40anfznam4d3q0q0jp2wwfrvfypz9ppbpjyzjdrhb3r2nizb0y";
|
||||
sha256 = "1v26fni64n0lbv37m35plh2bsrvhpb4ibgmg2mv05qfc3df721s5";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ urwid ];
|
||||
|
||||
# FIXME doesn't work with 2.7; others than 2.7 and 3.5 were not tested (yet)
|
||||
disabled = !pythonOlder "3.5";
|
||||
propagatedBuildInputs = [ python3Packages.urwid ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Mutt and terminal url selector (similar to urlview)";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.dpaetzel ];
|
||||
maintainers = with maintainers; [ dpaetzel jfrankenau ];
|
||||
};
|
||||
}
|
||||
|
@ -4532,6 +4532,8 @@ with pkgs;
|
||||
|
||||
uriparser = callPackage ../development/libraries/uriparser {};
|
||||
|
||||
urlscan = callPackage ../applications/misc/urlscan { };
|
||||
|
||||
urlview = callPackage ../applications/misc/urlview {};
|
||||
|
||||
usbmuxd = callPackage ../tools/misc/usbmuxd {};
|
||||
|
@ -30308,8 +30308,6 @@ EOF
|
||||
|
||||
uranium = callPackage ../development/python-modules/uranium { };
|
||||
|
||||
urlscan = callPackage ../applications/misc/urlscan { };
|
||||
|
||||
vine = buildPythonPackage rec {
|
||||
name = "vine-${version}";
|
||||
version = "1.1.3";
|
||||
|
Loading…
Reference in New Issue
Block a user