Unverified Commit f562f638 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

python3Packages.pylibrespot-java: init at 0.1.1 (#380791)

parents b635a1ca bfa83fd3
Loading
Loading
Loading
Loading
+38 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  aiohttp,
  setuptools,
}:

buildPythonPackage rec {
  pname = "pylibrespot-java";
  version = "0.1.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "uvjustin";
    repo = "pylibrespot-java";
    tag = "v${version}";
    hash = "sha256-aPmyYsO8yBrlPEQXOGNjZvuO8QZr13SOH09gqjW4WPA=";
  };

  build-system = [ setuptools ];

  dependencies = [ aiohttp ];

  pythonImportsCheck = [
    "pylibrespot_java"
  ];

  meta = {
    description = "Simple library to interface with a librespot-java server";
    homepage = "https://github.com/uvjustin/pylibrespot-java";
    changelog = "https://github.com/uvjustin/pylibrespot-java/tag/v${version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      hensoko
    ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -10876,6 +10876,8 @@ self: super: with self; {
  pyloadapi = callPackage ../development/python-modules/pyloadapi { };
  pylibrespot-java = callPackage ../development/python-modules/pylibrespot-java { };
  pylsl = callPackage ../development/python-modules/pylsl { };
  pynfsclient = callPackage ../development/python-modules/pynfsclient { };