Merge pull request #171630 from fabaff/meater-python

python310Packages.meater-python: init at 0.0.8
This commit is contained in:
Martin Weinelt 2022-05-05 14:26:07 +02:00 committed by GitHub
commit f7d7b08d10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 42 additions and 1 deletions

View File

@ -0,0 +1,37 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "meater-python";
version = "0.0.8";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-86XJmKOc2MCyU9v0UAZsPCUL/kAXywOlQOIHaykNF1o=";
};
propagatedBuildInputs = [
aiohttp
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"meater"
];
meta = with lib; {
description = "Library for the Apption Labs Meater cooking probe";
homepage = "https://github.com/Sotolotl/meater-python";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -1516,7 +1516,8 @@
pymazda
];
"meater" = ps: with ps; [
]; # missing inputs: meater-python
meater-python
];
"media_extractor" = ps: with ps; [
aiohttp-cors
youtube-dl-light
@ -3451,6 +3452,7 @@
"manual_mqtt"
"maxcube"
"mazda"
"meater"
"media_player"
"media_source"
"melcloud"

View File

@ -5167,6 +5167,8 @@ in {
measurement = callPackage ../development/python-modules/measurement { };
meater-python = callPackage ../development/python-modules/meater-python { };
mecab-python3 = callPackage ../development/python-modules/mecab-python3 { };
mechanicalsoup = callPackage ../development/python-modules/mechanicalsoup { };