Commit 73a0dfb4 authored by Samuel W. Flint's avatar Samuel W. Flint
Browse files

pythonPackages.boa-api: init at 0.1.14

parent 2aa5c8d3
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
{ 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 −0
Original line number Diff line number Diff line
@@ -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 { };