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