at master 716 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pycryptodome, 6 pythonOlder, 7}: 8 9buildPythonPackage rec { 10 pname = "brelpy"; 11 version = "0.0.3"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.6"; 15 16 src = fetchPypi { 17 inherit pname version; 18 hash = "sha256-MYWSKYd7emHZfY+W/UweQtTg62GSUMybpecL9BR8dhg="; 19 }; 20 21 propagatedBuildInputs = [ pycryptodome ]; 22 23 # Source not tagged and PyPI releases don't contain tests 24 doCheck = false; 25 26 pythonImportsCheck = [ "brelpy" ]; 27 28 meta = with lib; { 29 description = "Python to communicate with the Brel hubs"; 30 homepage = "https://gitlab.com/rogiervandergeer/brelpy"; 31 license = licenses.agpl3Only; 32 maintainers = with maintainers; [ fab ]; 33 }; 34}