mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
fa4d08d942
Diff: https://github.com/SoCo/SoCo/compare/refs/tags/v0.29.0...v0.29.1 Changelog: https://github.com/SoCo/SoCo/releases/tag/v0.29.1
60 lines
1.0 KiB
Nix
60 lines
1.0 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, graphviz
|
|
, appdirs
|
|
, ifaddr
|
|
, pythonOlder
|
|
, lxml
|
|
, mock
|
|
, nix-update-script
|
|
, pytestCheckHook
|
|
, requests
|
|
, requests-mock
|
|
, xmltodict
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "soco";
|
|
version = "0.29.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SoCo";
|
|
repo = "SoCo";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-Kp9rG7fJzvmnLpjVulf9kODoABdjaaHvgyed9I+FHVA=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
appdirs
|
|
ifaddr
|
|
lxml
|
|
requests
|
|
xmltodict
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
graphviz
|
|
mock
|
|
requests-mock
|
|
];
|
|
|
|
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}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ lovesegfault ];
|
|
};
|
|
}
|