Skip to content

Commit

Permalink
python310Packages.meater-python: init at 0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed May 5, 2022
1 parent 19e187f commit a2c236d
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
37 changes: 37 additions & 0 deletions pkgs/development/python-modules/meater-python/default.nix
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -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 { };
Expand Down

0 comments on commit a2c236d

Please sign in to comment.