at 22.05-pre 566 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, isPy27 5}: 6 7buildPythonPackage rec { 8 pname = "sacn"; 9 version = "1.8.1"; 10 disabled = isPy27; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "cdc9af732f4ca5badbf732499775575c4f815c73f857720c0a61a3fc80257f7a"; 15 }; 16 17 # no tests 18 doCheck = false; 19 20 pythonImportsCheck = [ "sacn" ]; 21 22 meta = with lib; { 23 description = "A simple ANSI E1.31 (aka sACN) module for python"; 24 homepage = "https://github.com/Hundemeier/sacn"; 25 license = licenses.mit; 26 maintainers = with maintainers; [ hexa ]; 27 }; 28}