packages/searxng: 1.0.0pre_6f0f9ba -> 1.0.0pre_018b0a9
This commit is contained in:
parent
4352f3f2c2
commit
eafbc6d2a4
3 changed files with 29 additions and 3 deletions
|
@ -34,9 +34,9 @@
|
||||||
"repo": "searxng"
|
"repo": "searxng"
|
||||||
},
|
},
|
||||||
"branch": "master",
|
"branch": "master",
|
||||||
"revision": "6f0f9baa38cb92e3d6d141580924a9e7420860a0",
|
"revision": "018b0a93224218e16622e1f2463d6b1b2f6b4d16",
|
||||||
"url": "https://github.com/searxng/searxng/archive/6f0f9baa38cb92e3d6d141580924a9e7420860a0.tar.gz",
|
"url": "https://github.com/searxng/searxng/archive/018b0a93224218e16622e1f2463d6b1b2f6b4d16.tar.gz",
|
||||||
"hash": "1lijqxv4sjad14m9gipw4jpf4wmj9i66n64inmd33jq8kpqc8vix"
|
"hash": "1ya3hcir2y7z4jlx3aw83yfdz0i409r4x19siibq1nr4w45y6gfl"
|
||||||
},
|
},
|
||||||
"stevenblack-hosts": {
|
"stevenblack-hosts": {
|
||||||
"type": "GitRelease",
|
"type": "GitRelease",
|
||||||
|
|
|
@ -49,6 +49,8 @@ toPythonModule (buildPythonApplication rec {
|
||||||
markdown-it-py
|
markdown-it-py
|
||||||
fasttext-predict
|
fasttext-predict
|
||||||
pybind11
|
pybind11
|
||||||
|
pytomlpp
|
||||||
|
(callPackage ./deps/chompjs.nix {})
|
||||||
];
|
];
|
||||||
|
|
||||||
# tests try to connect to network
|
# tests try to connect to network
|
||||||
|
|
24
packages/web-apps/searxng/deps/chompjs.nix
Normal file
24
packages/web-apps/searxng/deps/chompjs.nix
Normal 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; [ ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue