mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 20:55:31 +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,
|
hatchling,
|
||||||
orjson,
|
orjson,
|
||||||
pyarrow,
|
pyarrow,
|
||||||
|
python-dateutil,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
requests,
|
requests,
|
||||||
|
typing-extensions,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "elasticsearch";
|
pname = "elasticsearch";
|
||||||
version = "8.17.2";
|
version = "9.0.1";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-/38duK7v2HzrpO3OOqQHCZRYLmzwKdLme3TmbWNFCds=";
|
hash = "sha256-dvm1Gc/RWoYPYVqUupDcuVQ7chMGvFFE7MFfC01dJ4E=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [ hatchling ];
|
build-system = [ hatchling ];
|
||||||
|
|
||||||
dependencies = [ elastic-transport ];
|
dependencies = [
|
||||||
|
elastic-transport
|
||||||
|
python-dateutil
|
||||||
|
typing-extensions
|
||||||
|
];
|
||||||
|
|
||||||
optional-dependencies = {
|
optional-dependencies = {
|
||||||
requests = [ requests ];
|
requests = [ requests ];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue