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