python3Packages.neurio: init at 0.3.1
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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; };
|
||||
|
||||
Reference in New Issue
Block a user