python3Packages.arwn-client: init at 0.2.1 (#539746)
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
click,
|
||||
paho-mqtt,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "arwn-client";
|
||||
version = "0.2.1";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "sdague";
|
||||
repo = "arwn-client";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-By4dZlzR3It4UkYss+RPsKt9Easkegv6VbLd0SSaC2U=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
click
|
||||
paho-mqtt
|
||||
];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "arwn_client" ];
|
||||
|
||||
meta = {
|
||||
description = "Python client library for parsing ARWN weather station MQTT messages";
|
||||
homepage = "https://github.com/sdague/arwn-client";
|
||||
changelog = "https://github.com/sdague/arwn-client/releases/tag/${finalAttrs.src.tag}";
|
||||
license = lib.licenses.asl20;
|
||||
mainProgram = "arwn-client";
|
||||
maintainers = [ lib.maintainers.jamiemagee ];
|
||||
};
|
||||
})
|
||||
@@ -417,8 +417,9 @@
|
||||
"arwn" =
|
||||
ps: with ps; [
|
||||
aiohasupervisor
|
||||
arwn-client
|
||||
paho-mqtt
|
||||
]; # missing inputs: arwn-client
|
||||
];
|
||||
"aseko_pool_live" =
|
||||
ps: with ps; [
|
||||
aioaseko
|
||||
@@ -7847,6 +7848,7 @@
|
||||
"aranet"
|
||||
"arcam_fmj"
|
||||
"arve"
|
||||
"arwn"
|
||||
"aseko_pool_live"
|
||||
"assist_pipeline"
|
||||
"assist_satellite"
|
||||
|
||||
@@ -1347,6 +1347,8 @@ self: super: with self; {
|
||||
|
||||
arviz-stats = callPackage ../development/python-modules/arviz-stats { };
|
||||
|
||||
arwn-client = callPackage ../development/python-modules/arwn-client { };
|
||||
|
||||
arxiv = callPackage ../development/python-modules/arxiv { };
|
||||
|
||||
arxiv2bib = callPackage ../development/python-modules/arxiv2bib { };
|
||||
|
||||
Reference in New Issue
Block a user