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
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 ];
};
}