1{ lib 2, bluepy 3, buildPythonPackage 4, fetchPypi 5, pycryptodomex 6}: 7 8buildPythonPackage rec { 9 pname = "csrmesh"; 10 version = "0.10.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "03lzam54ypcfvqvikh3gsrivvlidmz1ifdq15xv8c5i3n5b178ag"; 15 }; 16 17 propagatedBuildInputs = [ 18 bluepy 19 pycryptodomex 20 ]; 21 22 # Project has no test 23 doCheck = false; 24 pythonImportsCheck = [ "csrmesh" ]; 25 26 meta = with lib; { 27 description = "Python implementation of the CSRMesh bridge protocol"; 28 homepage = "https://github.com/nkaminski/csrmesh"; 29 license = with licenses; [ lgpl3Only ]; 30 maintainers = with maintainers; [ fab ]; 31 }; 32}