Unverified Commit 0f8a12ee authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python312Packages.aiorussound: 2.3.2 -> 3.0.5

parent 399f8f17
Loading
Loading
Loading
Loading
+20 −5
Original line number Diff line number Diff line
@@ -4,28 +4,43 @@
  fetchFromGitHub,

  # build-system
  setuptools,
  poetry-core,

  # dependencies
  mashumaro,
  orjson,

  # tests
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "aiorussound";
  version = "2.3.2";
  version = "3.0.5";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "noahhusby";
    repo = "aiorussound";
    rev = "refs/tags/${version}";
    hash = "sha256-lQDHwm6dpernRYktu6eqV8uP7FHHHAU28viLg0q58+8=";
    hash = "sha256-tv/Box8YqmFXvnezp44lKrPscK9K24+mXBv9aZw/3M4=";
  };

  build-system = [ setuptools ];
  build-system = [ poetry-core ];

  dependencies = [
    mashumaro
    orjson
  ];

  doCheck = false; # no tests
  nativeCheckInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [ "aiorussound" ];

  meta = with lib; {
    changelog = "https://github.com/noahhusby/aiorussound/releases/tag/${version}";
    description = "Async python package for interfacing with Russound RIO hardware";
    homepage = "https://github.com/noahhusby/aiorussound";
    license = licenses.mit;