nixpkgs/pkgs/development/python-modules/serialio/default.nix
2023-02-27 17:20:47 +01:00

44 lines
824 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, pyserial
, sockio
}:
buildPythonPackage rec {
pname = "serialio";
version = "2.4.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "tiagocoutinho";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-9TRGT0wpoRRcHqnH1XzlMBh0IcVzdEcOzN7hkeYnoW4=";
};
propagatedBuildInputs = [
pyserial
sockio
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"serialio"
];
meta = with lib; {
description = "Library for concurrency agnostic serial communication";
homepage = "https://github.com/tiagocoutinho/serialio";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}