nixpkgs/pkgs/development/python-modules/pyobihai/default.nix
2023-06-10 21:52:58 +02:00

45 lines
860 B
Nix

{ lib
, buildPythonPackage
, defusedxml
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, requests
}:
buildPythonPackage rec {
pname = "pyobihai";
version = "1.4.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ejpenney";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-tDPu/ceH7+7AnxokADDfl+G56B0+ri8RxXxXEyWa61Q=";
};
propagatedBuildInputs = [
defusedxml
requests
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"pyobihai"
];
meta = with lib; {
description = "Module to interact with Obihai devices";
homepage = "https://github.com/ejpenney/pyobihai";
changelog = "https://github.com/ejpenney/pyobihai/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}