python310Packages.pyric: init at 0.1.6
This commit is contained in:
parent
796a267784
commit
08c4e5c4da
34
pkgs/development/python-modules/pyric/default.nix
Normal file
34
pkgs/development/python-modules/pyric/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user