mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 11:45:45 +03:00
python313Packages.elasticsearch: 8.17.2 -> 9.0.1
https://github.com/elastic/elasticsearch-py/releases/tag/v9.0.1
This commit is contained in:
parent
5f1b458f21
commit
123add8e35
1 changed files with 9 additions and 3 deletions
|
@ -7,25 +7,31 @@
|
|||
hatchling,
|
||||
orjson,
|
||||
pyarrow,
|
||||
python-dateutil,
|
||||
pythonOlder,
|
||||
requests,
|
||||
typing-extensions,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "elasticsearch";
|
||||
version = "8.17.2";
|
||||
version = "9.0.1";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-/38duK7v2HzrpO3OOqQHCZRYLmzwKdLme3TmbWNFCds=";
|
||||
hash = "sha256-dvm1Gc/RWoYPYVqUupDcuVQ7chMGvFFE7MFfC01dJ4E=";
|
||||
};
|
||||
|
||||
build-system = [ hatchling ];
|
||||
|
||||
dependencies = [ elastic-transport ];
|
||||
dependencies = [
|
||||
elastic-transport
|
||||
python-dateutil
|
||||
typing-extensions
|
||||
];
|
||||
|
||||
optional-dependencies = {
|
||||
requests = [ requests ];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue