summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pyblu/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pyblu/default.nix')
-rw-r--r--pkgs/development/python-modules/pyblu/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/pyblu/default.nix b/pkgs/development/python-modules/pyblu/default.nix
index 24e65fcfdd13..5ba66443feda 100644
--- a/pkgs/development/python-modules/pyblu/default.nix
+++ b/pkgs/development/python-modules/pyblu/default.nix
@@ -3,28 +3,28 @@
aioresponses,
buildPythonPackage,
fetchFromGitHub,
+ hatchling,
lib,
lxml,
- poetry-core,
pytest-asyncio,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pyblu";
- version = "2.0.1";
+ version = "2.0.4";
pyproject = true;
src = fetchFromGitHub {
owner = "LouisChrist";
repo = "pyblu";
tag = "v${version}";
- hash = "sha256-4dWRz7KPLgjN57U/jsm6VCqzkzfMY5yuHL0ZSBeALyI=";
+ hash = "sha256-nzTqakEMl9gywIQpC9OR0xiqZzawU5RxOx3NQT+CiFc=";
};
pythonRelaxDeps = [ "aiohttp" ];
- build-system = [ poetry-core ];
+ build-system = [ hatchling ];
dependencies = [
aiohttp