Merge pull request #168966 from fabaff/oasatelematics

This commit is contained in:
Martin Weinelt 2022-04-16 22:50:48 +02:00 committed by GitHub
commit 5cd04131c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 44 additions and 1 deletions

View file

@ -0,0 +1,40 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, requests
}:
buildPythonPackage rec {
pname = "oasatelematics";
version = "0.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "panosmz";
repo = pname;
rev = "v${version}";
hash = "sha256-3O7XbNVj1S3ZwheklEhm0ivw16Tj7drML/xYC9383Kg=";
};
propagatedBuildInputs = [
requests
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"oasatelematics"
];
meta = with lib; {
description = "Python wrapper for the OASA Telematics API";
homepage = "https://github.com/panosmz/oasatelematics";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -1809,7 +1809,8 @@
"nzbget" = ps: with ps; [
]; # missing inputs: pynzbgetapi
"oasa_telematics" = ps: with ps; [
]; # missing inputs: oasatelematics
oasatelematics
];
"obihai" = ps: with ps; [
pyobihai
];

View file

@ -5715,6 +5715,8 @@ in {
nwdiag = callPackage ../development/python-modules/nwdiag { };
oasatelematics = callPackage ../development/python-modules/oasatelematics { };
oath = callPackage ../development/python-modules/oath { };
oauth2 = callPackage ../development/python-modules/oauth2 { };