49 lines
838 B
Nix
49 lines
838 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, flask
|
|
, mock
|
|
, prettytable
|
|
, pyserial
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, requests
|
|
, stevedore
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pynx584";
|
|
version = "0.6";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kk7ds";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0if1jq8qiqp4w4zhf2xzzcb8y70hr5pxqzh96i008p6izjha89y6";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
flask
|
|
prettytable
|
|
pyserial
|
|
requests
|
|
stevedore
|
|
];
|
|
|
|
checkInputs = [
|
|
mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "nx584" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python package for communicating to NX584/NX8E interfaces";
|
|
homepage = "https://github.com/kk7ds/pynx584";
|
|
license = with licenses; [ gpl3Only ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|