blob: faddd1a8f63f84996d6b7b1f6e37ffad3da615f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
}:
buildPythonPackage rec {
pname = "pyvolumio";
version = "0.1.5";
format = "setuptools";
src = fetchFromGitHub {
owner = "OnFreund";
repo = "PyVolumio";
rev = "v${version}";
sha256 = "1nyvflap39cwq1cm9wwl9idvfmz1ixsl80f1dnskx22fk0lmvj4h";
};
propagatedBuildInputs = [ aiohttp ];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pyvolumio" ];
meta = {
description = "Python module to control Volumio";
homepage = "https://github.com/OnFreund/PyVolumio";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|