python3Packages.pyradios: update meta

This commit is contained in:
Fabian Affolter
2022-01-09 10:27:22 +01:00
parent 37bb0ba9f4
commit 87c9cbdea4
@@ -1,7 +1,17 @@
{ lib, buildPythonPackage, fetchPypi, appdirs, requests }:
{ lib
, buildPythonPackage
, fetchPypi
, appdirs
, requests
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyradios";
version = "1.0.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
@@ -13,6 +23,7 @@ buildPythonPackage rec {
requests
];
# Tests and pythonImportsCheck require network access
doCheck = false;
meta = with lib; {