python3Packages.neurio: init at 0.3.1

This commit is contained in:
Jamie Magee
2025-08-15 22:20:45 -07:00
parent 0974f0729a
commit 76c7c744c5
2 changed files with 38 additions and 0 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 ];
};
}
+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; };