summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-09-29 08:27:24 +0200
committerGitHub <noreply@github.com>2022-09-29 08:27:24 +0200
commitc4d0026e7346ad2006c2ba730d5a712c18195aab (patch)
tree7a3dc1a5c6a642122b10f26795372017c6e5035c
parent14986412eb9ce6bdc4264ac05b083d535e08250f (diff)
parent0979718f5285c18457d34682011c175191b50f24 (diff)
Merge pull request #192509 from fabaff/bimmer-bump
python310Packages.bimmer-connected: 0.10.3 -> 0.10.4
-rw-r--r--pkgs/development/python-modules/bimmer-connected/default.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/bimmer-connected/default.nix b/pkgs/development/python-modules/bimmer-connected/default.nix
index 697df2a5d146..4af50c6fdb45 100644
--- a/pkgs/development/python-modules/bimmer-connected/default.nix
+++ b/pkgs/development/python-modules/bimmer-connected/default.nix
@@ -1,4 +1,5 @@
{ lib
+, aiofile
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
@@ -13,7 +14,7 @@
buildPythonPackage rec {
pname = "bimmer-connected";
- version = "0.10.3";
+ version = "0.10.4";
format = "setuptools";
disabled = pythonOlder "3.6";
@@ -22,7 +23,7 @@ buildPythonPackage rec {
owner = "bimmerconnected";
repo = "bimmer_connected";
rev = "refs/tags/${version}";
- hash = "sha256-3jCxncR7bD0DDAH6vt28eBal9cVI9liLbBCX0IJ2bQ8=";
+ hash = "sha256-o4h84WM/p4gVrxv7YDNgwDpyBYu7Aileagwc8PXNwPs=";
};
nativeBuildInputs = [
@@ -32,6 +33,7 @@ buildPythonPackage rec {
PBR_VERSION = version;
propagatedBuildInputs = [
+ aiofile
httpx
pycryptodome
pyjwt
@@ -43,6 +45,10 @@ buildPythonPackage rec {
time-machine
];
+ pythonImportsCheck = [
+ "bimmer_connected"
+ ];
+
meta = with lib; {
description = "Library to read data from the BMW Connected Drive portal";
homepage = "https://github.com/bimmerconnected/bimmer_connected";