depot/third_party/nixpkgs/pkgs/development/python-modules/pyobihai/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

41 lines
857 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 ];
};
}