Unverified Commit 4b81edcb authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

python3Packages.concord232: init at 0.15 (#434626)

parents 9821c68f 0bfc5a66
Loading
Loading
Loading
Loading
+44 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  requests,
  stevedore,
  prettytable,
  pyserial,
  flask,
}:

buildPythonPackage rec {
  pname = "concord232";
  version = "0.15";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "JasonCarter80";
    repo = "concord232";
    tag = "v${version}";
    hash = "sha256-qMHFOKuNuk4Z/FDNRqh1nsnA5vCW+9YXGK6d7Td5O5s=";
  };

  build-system = [ setuptools ];

  dependencies = [
    requests
    stevedore
    prettytable
    pyserial
    flask
  ];

  # Package has no tests
  doCheck = false;

  meta = {
    description = "GE Concord 4 RS232 Serial Interface Library and Server";
    homepage = "https://github.com/JasonCarter80/concord232";
    license = lib.licenses.asl20;
    maintainers = [ lib.maintainers.jamiemagee ];
  };
}
+2 −1
Original line number Diff line number Diff line
@@ -973,7 +973,8 @@
      ];
    "concord232" =
      ps: with ps; [
      ]; # missing inputs: concord232
        concord232
      ];
    "coned" =
      ps: with ps; [
      ];
+2 −0
Original line number Diff line number Diff line
@@ -2867,6 +2867,8 @@ self: super: with self; {
  compressed-tensors = callPackage ../development/python-modules/compressed-tensors { };
  concord232 = callPackage ../development/python-modules/concord232 { };
  concurrent-log-handler = callPackage ../development/python-modules/concurrent-log-handler { };
  conda = callPackage ../development/python-modules/conda { };