pythonPackages.pyradios: init at 0.0.22

This commit is contained in:
Silvan Mosberger 2021-02-13 03:21:26 +01:00
parent 9677d30d77
commit f702e566c0
No known key found for this signature in database
GPG key ID: E8F1E9EAD284E17D
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,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 ];
};
}

View file

@ -6150,6 +6150,8 @@ in {
pyrad = callPackage ../development/python-modules/pyrad { };
pyradios = callPackage ../development/python-modules/pyradios { };
py-radix = callPackage ../development/python-modules/py-radix { };
pyramid_beaker = callPackage ../development/python-modules/pyramid_beaker { };