Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pyradios / default.nix
blob45e972ab5e2850a50114198649f0c2a234e31a8a
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , appdirs
5 , httpx
6 , setuptools
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "pyradios";
12   version = "2.1.0";
13   format = "setuptools";
15   disabled = pythonOlder "3.6";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-XTpw8bgFZo35PJngr9oweU6fY3KAphJsrEhkKzWHLIA=";
20   };
22   propagatedBuildInputs = [
23     appdirs
24     httpx
25     setuptools
26   ];
28   # Tests and pythonImportsCheck require network access
29   doCheck = false;
31   meta = with lib; {
32     description = "Python client for the https://api.radio-browser.info";
33     homepage = "https://github.com/andreztz/pyradios";
34     license = licenses.mit;
35     maintainers = [ ];
36   };