python3Packages.neurio: init at 0.3.1 (#434145)

This commit is contained in:
Martin Weinelt
2025-08-16 20:46:32 +02:00
committed by GitHub
3 changed files with 40 additions and 1 deletions
@@ -0,0 +1,36 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "neurio";
version = "0.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "jordanh";
repo = "neurio-python";
tag = version;
hash = "sha256-Kyjx+76OR3fpA9p/Zg7S4/vuGuNU2kb022BijoNMSUI=";
};
build-system = [ setuptools ];
dependencies = [ requests ];
# Project has tests but they require actual API credentials
doCheck = false;
pythonImportsCheck = [ "neurio" ];
meta = {
description = "Neurio energy sensor and appliance automation API library";
homepage = "https://github.com/jordanh/neurio-python";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
@@ -3942,7 +3942,8 @@
];
"neurio_energy" =
ps: with ps; [
]; # missing inputs: neurio
neurio
];
"nexia" =
ps: with ps; [
nexia
+2
View File
@@ -10353,6 +10353,8 @@ self: super: with self; {
neuralfoil = callPackage ../development/python-modules/neuralfoil { };
neurio = callPackage ../development/python-modules/neurio { };
neurokit2 = callPackage ../development/python-modules/neurokit2 { };
neuron-full = pkgs.neuron-full.override { python3 = python; };