1{ lib 2, buildPythonPackage 3, fetchFromGitHub 4}: 5 6buildPythonPackage rec { 7 pname = "playsound"; 8 version = "1.3.0"; 9 10 src = fetchFromGitHub { 11 owner = "TaylorSMarks"; 12 repo = "playsound"; 13 rev = "v${version}"; 14 sha256 = "0jbq641lmb0apq4fy6r2zyag8rdqgrz8c4wvydzrzmxrp6yx6wyd"; 15 }; 16 17 doCheck = false; 18 19 pythonImportsCheck = [ "playsound" ]; 20 21 meta = with lib; { 22 homepage = "https://github.com/TaylorSMarks/playsound"; 23 description = "Pure Python, cross platform, single function module with no dependencies for playing sounds"; 24 license = licenses.mit; 25 platforms = platforms.all; 26 maintainers = with maintainers; [ luc65r ]; 27 }; 28}