pythonPackages.boa-api: init at 0.1.14

This commit is contained in:
Samuel W. Flint
2023-01-05 14:00:57 -06:00
parent 2aa5c8d3ab
commit 73a0dfb449
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
@@ -1311,6 +1311,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 { };