summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyradios/default.nix
blob: f95988063dd23f81cc1e0483ac96d750aaff9e6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, buildPythonPackage, fetchPypi, appdirs, requests }:
buildPythonPackage rec {
  pname = "pyradios";
  version = "0.0.22";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1bgfb8vz7jybswss16pdzns0qpqfrwa9f2g8qrh1r4mig4xh2dmi";
  };

  propagatedBuildInputs = [
    appdirs
    requests
  ];

  doCheck = false;

  meta = with lib; {
    description = "Python client for the https://api.radio-browser.info";
    homepage = "https://github.com/andreztz/pyradios";
    license = licenses.mit;
    maintainers = with maintainers; [ infinisil ];
  };
}