3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.bimmer-connected: 0.7.22 -> 0.8.0

https://github.com/bimmerconnected/bimmer_connected/releases/tag/0.8.0
This commit is contained in:
Robert Schütz 2021-11-18 09:19:04 -08:00
parent e5537e4de7
commit b396699773

View file

@ -5,20 +5,21 @@
, pbr
, requests
, pytestCheckHook
, requests-mock
}:
buildPythonPackage rec {
pname = "bimmer-connected";
version = "0.7.22";
version = "0.8.0";
format = "setuptools";
disabled = pythonOlder "3.5";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "bimmerconnected";
repo = "bimmer_connected";
rev = version;
sha256 = "sha256-tAkgOZvf9nyrAfFRxGkp7O/2oIAdBx+hNZbK9den+5c=";
sha256 = "sha256-sox24UpuIK5SP0IWVxa/NiyR5IrTzXe0SVTCd4FB6mo=";
};
nativeBuildInputs = [
@ -33,6 +34,7 @@ buildPythonPackage rec {
checkInputs = [
pytestCheckHook
requests-mock
];
meta = with lib; {