From 3a75d8fe4dfc6cb3af31583aafadd7c7c5f4d6f2 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 9 Dec 2021 19:09:11 +0100 Subject: [PATCH] python3Packages.weconnect: init at 0.26.0 --- .../python-modules/weconnect/default.nix | 58 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 60 insertions(+) create mode 100644 pkgs/development/python-modules/weconnect/default.nix diff --git a/pkgs/development/python-modules/weconnect/default.nix b/pkgs/development/python-modules/weconnect/default.nix new file mode 100644 index 000000000000..4c560695ca58 --- /dev/null +++ b/pkgs/development/python-modules/weconnect/default.nix @@ -0,0 +1,58 @@ +{ lib +, ascii-magic +, buildPythonPackage +, fetchFromGitHub +, pillow +, pytest-httpserver +, pytestCheckHook +, pythonOlder +, requests +}: + +buildPythonPackage rec { + pname = "weconnect"; + version = "0.26.0"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; + + src = fetchFromGitHub { + owner = "tillsteinbach"; + repo = "WeConnect-python"; + rev = "v${version}"; + sha256 = "sha256-30guJudGOY8WAYupX89hx6mFwfAPASnKMSa+0kDbtfQ="; + }; + + propagatedBuildInputs = [ + ascii-magic + pillow + requests + ]; + + checkInputs = [ + pytest-httpserver + pytestCheckHook + ]; + + postPatch = '' + substituteInPlace weconnect/__version.py \ + --replace "develop" "${version}" + substituteInPlace setup.py \ + --replace "setup_requires=SETUP_REQUIRED," "setup_requires=[]," \ + --replace "tests_require=TEST_REQUIRED," "tests_require=[]," + substituteInPlace pytest.ini \ + --replace "--cov=weconnect --cov-config=.coveragerc --cov-report html" "" \ + --replace "pytest-cov" "" + ''; + + pythonImportsCheck = [ + "weconnect" + ]; + + meta = with lib; { + description = "Python client for the Volkswagen WeConnect Services"; + homepage = "https://github.com/tillsteinbach/WeConnect-python"; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ fab ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index dedb2446ba6a..fb088309b814 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10074,6 +10074,8 @@ in { webthing = callPackage ../development/python-modules/webthing { }; + weconnect = callPackage ../development/python-modules/weconnect { }; + werkzeug = callPackage ../development/python-modules/werkzeug { }; werkzeug1 = callPackage ../development/python-modules/werkzeug/1.nix { };