Unverified Commit 3caa9d45 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

python3Packages.fluss-api: init at 0.1.9.20 (#493125)

parents ee6860a9 53bfdce2
Loading
Loading
Loading
Loading
+37 −0
Original line number Diff line number Diff line
{
  lib,
  aiohttp,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
}:

buildPythonPackage (finalAttrs: {
  pname = "fluss-api";
  version = "0.1.9.20";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "fluss";
    repo = "Fluss_Python_Library";
    tag = "v${finalAttrs.version}";
    hash = "sha256-g5LZWlz8QZWUb6UFyY1wQIHqC2lCTpCsaWgrkPCoDOw=";
  };

  build-system = [ setuptools ];

  dependencies = [ aiohttp ];

  # upstream has no tests
  doCheck = false;

  pythonImportsCheck = [ "fluss_api" ];

  meta = {
    description = "Fluss+ API Client";
    homepage = "https://github.com/fluss/Fluss_Python_Library";
    changelog = "https://github.com/fluss/Fluss_Python_Library/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.jamiemagee ];
  };
})
+3 −1
Original line number Diff line number Diff line
@@ -1875,7 +1875,8 @@
      ];
    "fluss" =
      ps: with ps; [
      ]; # missing inputs: fluss-api
        fluss-api
      ];
    "flux" =
      ps: with ps; [
      ];
@@ -7426,6 +7427,7 @@
    "flipr"
    "flo"
    "flume"
    "fluss"
    "flux"
    "flux_led"
    "folder"
+2 −0
Original line number Diff line number Diff line
@@ -5767,6 +5767,8 @@ self: super: with self; {
  flufl-lock = callPackage ../development/python-modules/flufl/lock.nix { };
  fluss-api = callPackage ../development/python-modules/fluss-api { };
  flux-led = callPackage ../development/python-modules/flux-led { };
  flyingsquid = callPackage ../development/python-modules/flyingsquid { };