Merge pull request #171924 from r-ryantm/auto-update/python3.10-snapcast

python310Packages.snapcast: 2.1.3 -> 2.2.0
main
Benjamin Hipple 2 years ago committed by GitHub
commit 14a348fcc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 16
      pkgs/development/python-modules/snapcast/default.nix

@ -2,20 +2,22 @@
, buildPythonPackage , buildPythonPackage
, construct , construct
, fetchFromGitHub , fetchFromGitHub
, isPy3k
, pytestCheckHook , pytestCheckHook
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "snapcast"; pname = "snapcast";
version = "2.1.3"; version = "2.2.0";
disabled = !isPy3k; format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "happyleavesaoc"; owner = "happyleavesaoc";
repo = "python-snapcast"; repo = "python-snapcast";
rev = version; rev = "refs/tags/${version}";
sha256 = "1jigdccdd7bffszim942mxcwxyznfjx7y3r5yklz3psl7zgbzd6c"; hash = "sha256-H41X5bfRRu+uE7eUsmUkONm6hugNs43+O7MvVPH0e+8=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -26,7 +28,9 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
pythonImportsCheck = [ "snapcast" ]; pythonImportsCheck = [
"snapcast"
];
meta = with lib; { meta = with lib; {
description = "Control Snapcast, a multi-room synchronous audio solution"; description = "Control Snapcast, a multi-room synchronous audio solution";

Loading…
Cancel
Save