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

44 lines
980 B
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
pytest-asyncio,
pytestCheckHook,
pyyaml,
}:
buildPythonPackage rec {
pname = "siobrultech-protocols";
version = "0.14.0";
disabled = pythonOlder "3.8";
format = "setuptools";
src = fetchFromGitHub {
owner = "sdwilsh";
repo = "siobrultech-protocols";
rev = "refs/tags/v${version}";
hash = "sha256-8tls2wlLA3wQ78gK4JvvhSWZS5oHRzzsKE73M4i1eyg=";
};
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
pyyaml
];
pythonImportsCheck = [
"siobrultech_protocols.gem.api"
"siobrultech_protocols.gem.protocol"
];
meta = with lib; {
description = "A Sans-I/O Python client library for Brultech Devices";
homepage = "https://github.com/sdwilsh/siobrultech-protocols";
changelog = "https://github.com/sdwilsh/siobrultech-protocols/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}