mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #168966 from fabaff/oasatelematics
This commit is contained in:
commit
5cd04131c9
3 changed files with 44 additions and 1 deletions
40
pkgs/development/python-modules/oasatelematics/default.nix
Normal file
40
pkgs/development/python-modules/oasatelematics/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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
|
||||
];
|
||||
|
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue