1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4}:
5
6buildPythonPackage rec {
7 pname = "playsound";
8 version = "1.2.2";
9
10 src = fetchFromGitHub {
11 owner = "TaylorSMarks";
12 repo = "playsound";
13 rev = "907f1fe73375a2156f7e0900c4b42c0a60fa1d00";
14 sha256 = "1fh3m115h0c57lj2pfhhqhmsh5awzblb7csi1xc5a6f6slhl059k";
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}