python310Packages.pyric: init at 0.1.6

This commit is contained in:
Fabian Affolter 2022-08-21 10:48:33 +02:00
parent 796a267784
commit 08c4e5c4da
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyric";
version = "0.1.6";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "wraith-wireless";
repo = pname;
rev = version;
hash = "sha256-NAuGgYViMYxzJDQw666cT1WaaNNKh3Ik/tNYJ/tPjbY=";
};
# Tests are outdated
doCheck = false;
pythonImportsCheck = [
"pyric"
];
meta = with lib; {
description = "Python Radio Interface Controller";
homepage = "https://github.com/wraith-wireless/PyRIC";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -8228,6 +8228,8 @@ in {
pyres = callPackage ../development/python-modules/pyres { };
pyric = callPackage ../development/python-modules/pyric { };
pyrisco = callPackage ../development/python-modules/pyrisco { };
pyrituals = callPackage ../development/python-modules/pyrituals { };