packages/searxng: 1.0.0pre_6f0f9ba -> 1.0.0pre_018b0a9

This commit is contained in:
Max Headroom 2023-08-21 16:43:51 +02:00
parent 4352f3f2c2
commit eafbc6d2a4
3 changed files with 29 additions and 3 deletions

View file

@ -34,9 +34,9 @@
"repo": "searxng"
},
"branch": "master",
"revision": "6f0f9baa38cb92e3d6d141580924a9e7420860a0",
"url": "https://github.com/searxng/searxng/archive/6f0f9baa38cb92e3d6d141580924a9e7420860a0.tar.gz",
"hash": "1lijqxv4sjad14m9gipw4jpf4wmj9i66n64inmd33jq8kpqc8vix"
"revision": "018b0a93224218e16622e1f2463d6b1b2f6b4d16",
"url": "https://github.com/searxng/searxng/archive/018b0a93224218e16622e1f2463d6b1b2f6b4d16.tar.gz",
"hash": "1ya3hcir2y7z4jlx3aw83yfdz0i409r4x19siibq1nr4w45y6gfl"
},
"stevenblack-hosts": {
"type": "GitRelease",

View file

@ -49,6 +49,8 @@ toPythonModule (buildPythonApplication rec {
markdown-it-py
fasttext-predict
pybind11
pytomlpp
(callPackage ./deps/chompjs.nix {})
];
# tests try to connect to network

View file

@ -0,0 +1,24 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "chompjs";
version = "1.2.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-I5PbVinyjO1OF78t9h67lVBM/VsogYoMj3iFZS4WTn8=";
};
pythonImportsCheck = [ "chompjs" ];
meta = with lib; {
description = "Parsing JavaScript objects into Python dictionaries";
homepage = "https://pypi.org/project/chompjs/";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}