biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / playsound / default.nix
blob7fb3220810d3711a58b14b7f612370b6bd21b932
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5 }:
7 buildPythonPackage rec {
8   pname = "playsound";
9   version = "1.3.0";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "TaylorSMarks";
14     repo = "playsound";
15     rev = "v${version}";
16     sha256 = "0jbq641lmb0apq4fy6r2zyag8rdqgrz8c4wvydzrzmxrp6yx6wyd";
17   };
19   doCheck = false;
21   pythonImportsCheck = [ "playsound" ];
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; [ luc65r ];
29   };