mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
pythonPackages.pyradios: init at 0.0.22
This commit is contained in:
parent
9677d30d77
commit
f702e566c0
2 changed files with 26 additions and 0 deletions
24
pkgs/development/python-modules/pyradios/default.nix
Normal file
24
pkgs/development/python-modules/pyradios/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue