10 buildPythonPackage rec {
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
18 owner = "tiagocoutinho";
20 rev = "refs/tags/v${version}";
21 hash = "sha256-9TRGT0wpoRRcHqnH1XzlMBh0IcVzdEcOzN7hkeYnoW4=";
24 propagatedBuildInputs = [
32 pythonImportsCheck = [ "serialio" ];
35 description = "Library for concurrency agnostic serial communication";
36 homepage = "https://github.com/tiagocoutinho/serialio";
37 license = with licenses; [ gpl3Plus ];
38 maintainers = with maintainers; [ fab ];