python3Packages.momongo: init at 0.1.5 (#447450)
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
{
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
lib,
|
||||
pyserial,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "momonga";
|
||||
version = "0.1.5";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nbtk";
|
||||
repo = "momonga";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-sc81L71DJq+XiIYUSMH6knfaPfV7cng/Sp0ZTY6N7ZI=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
pyserial
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "momonga" ];
|
||||
|
||||
# tests require access to the API
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/nbtk/momonga/releases/tag/${src.tag}";
|
||||
description = "Python Route B Library: A Communicator for Low-voltage Smart Electric Energy Meters";
|
||||
homepage = "https://github.com/nbtk/momonga";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.dotlambda ];
|
||||
};
|
||||
}
|
||||
@@ -9612,6 +9612,8 @@ self: super: with self; {
|
||||
|
||||
momepy = callPackage ../development/python-modules/momepy { };
|
||||
|
||||
momonga = callPackage ../development/python-modules/momonga { };
|
||||
|
||||
monai = callPackage ../development/python-modules/monai { };
|
||||
|
||||
monai-deploy = callPackage ../development/python-modules/monai-deploy { };
|
||||
|
||||
Reference in New Issue
Block a user