Skip to content

Commit

Permalink
Merge pull request NixOS#280195 from r-ryantm/auto-update/python311Pa…
Browse files Browse the repository at this point in the history
…ckages.nibe

python311Packages.nibe: 2.6.0 -> 2.7.0
  • Loading branch information
fabaff authored Jan 12, 2024
2 parents 0ac513d + cbdd9ab commit c6b7be9
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions pkgs/development/python-modules/nibe/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,23 @@
, aresponses
, async-modbus
, async-timeout
, asyncclick
, buildPythonPackage
, construct
, exceptiongroup
, fetchFromGitHub
, pandas
, pytest-asyncio
, pytestCheckHook
, python-slugify
, pythonOlder
, setuptools
, tenacity
}:

buildPythonPackage rec {
pname = "nibe";
version = "2.6.0";
version = "2.7.0";
pyproject = true;

disabled = pythonOlder "3.9";
Expand All @@ -25,7 +28,7 @@ buildPythonPackage rec {
owner = "yozik04";
repo = "nibe";
rev = "refs/tags/${version}";
hash = "sha256-VDK6ZCyW8fmp9Ap/AwgLbU5vlyhYXIGYD6eZ3esSCiU=";
hash = "sha256-hNxOB/H/KK9qHd+3FQHn9zjmCZRtY6H0nYKNqUc0FIg=";
};

nativeBuildInputs = [
Expand All @@ -40,6 +43,16 @@ buildPythonPackage rec {
tenacity
];

passthru.optional-dependencies = {
convert = [
pandas
python-slugify
];
cli = [
asyncclick
];
};

nativeCheckInputs = [
aresponses
pytest-asyncio
Expand Down

0 comments on commit c6b7be9

Please sign in to comment.