mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
Merge pull request #171630 from fabaff/meater-python
python310Packages.meater-python: init at 0.0.8
This commit is contained in:
commit
f7d7b08d10
37
pkgs/development/python-modules/meater-python/default.nix
Normal file
37
pkgs/development/python-modules/meater-python/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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"
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user