Merge pull request #200072 from swflint/add-boa-api-python

This commit is contained in:
Sandro
2023-04-01 02:57:21 +02:00
committed by GitHub
2 changed files with 27 additions and 0 deletions
@@ -0,0 +1,25 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "boa-api";
version = "0.1.14";
src = fetchFromGitHub {
owner = "boalang";
repo = "api-python";
rev = "v${version}";
sha256 = "sha256-8tt68NLi5ewSKiHdu3gDawTBPylbDmB4zlUUqa7EQuY=";
};
pythonImportsCheck = [ "boaapi" ];
meta = {
homepage = "https://github.com/boalang/api-python";
description = "Python client API for communicating with Boa's (https://boa.cs.iastate.edu/) XML-RPC based services";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ swflint ];
};
}
+2
View File
@@ -1386,6 +1386,8 @@ self: super: with self; {
bme680 = callPackage ../development/python-modules/bme680 { };
boa-api = callPackage ../development/python-modules/boa-api { };
bokeh = callPackage ../development/python-modules/bokeh { };
boltons = callPackage ../development/python-modules/boltons { };