searx: cleanup, remove python name prefix

This commit is contained in:
Franz Pletz 2017-08-09 19:38:59 +02:00
parent 30d76b8ccd
commit 1ed786292b
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4
1 changed files with 4 additions and 3 deletions

View File

@ -1,8 +1,9 @@
{ stdenv, pythonPackages, fetchFromGitHub }: { lib, pythonPackages, fetchFromGitHub }:
pythonPackages.buildPythonApplication rec { pythonPackages.buildPythonApplication rec {
name = "searx-${version}"; name = "searx-${version}";
version = "0.12.0"; version = "0.12.0";
namePrefix = "";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "asciimoo"; owner = "asciimoo";
@ -25,10 +26,10 @@ pythonPackages.buildPythonApplication rec {
pyasn1 pyasn1-modules ndg-httpsclient certifi pysocks pyasn1 pyasn1-modules ndg-httpsclient certifi pysocks
]; ];
meta = with stdenv.lib; { meta = with lib; {
homepage = https://github.com/asciimoo/searx; homepage = https://github.com/asciimoo/searx;
description = "A privacy-respecting, hackable metasearch engine"; description = "A privacy-respecting, hackable metasearch engine";
license = licenses.agpl3Plus; license = licenses.agpl3Plus;
maintainers = with maintainers; [ matejc fpletz profpatsch ]; maintainers = with maintainers; [ matejc fpletz profpatsch ];
}; };
} }