summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/soco/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/soco/default.nix')
-rw-r--r--pkgs/development/python-modules/soco/default.nix12
1 files changed, 3 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/soco/default.nix b/pkgs/development/python-modules/soco/default.nix
index bc547c7101ce..83b0d6422235 100644
--- a/pkgs/development/python-modules/soco/default.nix
+++ b/pkgs/development/python-modules/soco/default.nix
@@ -7,9 +7,7 @@
ifaddr,
lxml,
mock,
- nix-update-script,
pytestCheckHook,
- pythonOlder,
requests,
requests-mock,
setuptools,
@@ -18,16 +16,14 @@
buildPythonPackage rec {
pname = "soco";
- version = "0.30.10";
+ version = "0.30.11";
pyproject = true;
- disabled = pythonOlder "3.6";
-
src = fetchFromGitHub {
owner = "SoCo";
repo = "SoCo";
tag = "v${version}";
- hash = "sha256-BTDKn6JVqXfLiry6jES/OnsO3SGniEMWW2osf9veukU=";
+ hash = "sha256-x5WKG2KFBr0FQu28160qHB2ckKdpx0cKhgYTH6sLnuw=";
};
build-system = [ setuptools ];
@@ -49,12 +45,10 @@ buildPythonPackage rec {
pythonImportsCheck = [ "soco" ];
- passthru.updateScript = nix-update-script { };
-
meta = with lib; {
description = "CLI and library to control Sonos speakers";
homepage = "http://python-soco.com/";
- changelog = "https://github.com/SoCo/SoCo/releases/tag/v${version}";
+ changelog = "https://github.com/SoCo/SoCo/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ lovesegfault ];
};