depot/third_party/nixpkgs/pkgs/development/python-modules/luqum/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

57 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
elastic-transport,
elasticsearch-dsl,
fetchFromGitHub,
ply,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "luqum";
version = "0.13.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "jurismarches";
repo = "luqum";
rev = "refs/tags/${version}";
hash = "sha256-lcJCLl0crCl3Y5UlWBMZJR2UtVP96gaJNRxwY9Xn7TM=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace '--doctest-modules --doctest-glob="test_*.rst" --cov=luqum --cov-branch --cov-report html --no-cov-on-fail' ""
'';
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ ply ];
nativeCheckInputs = [
elastic-transport
elasticsearch-dsl
pytestCheckHook
];
pythonImportsCheck = [ "luqum" ];
disabledTestPaths = [
# Tests require an Elasticsearch instance
"tests/test_elasticsearch/test_es_integration.py"
"tests/test_elasticsearch/test_es_naming.py"
];
meta = with lib; {
description = "Lucene query parser generating ElasticSearch queries";
homepage = "https://github.com/jurismarches/luqum";
changelog = "https://github.com/jurismarches/luqum/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ happysalada ];
};
}