blob: 322454a2f59d0b72d29649ebcb49fbb7c622b5de (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
isPy27,
}:
buildPythonPackage rec {
pname = "py-sonic";
version = "1.0.3";
format = "setuptools";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
hash = "sha256-Kcly3pTBL9ZMDcCfKgI1pO8Iyr15/tv8PVoi5WUUUKE=";
};
# package has no tests
doCheck = false;
pythonImportsCheck = [ "libsonic" ];
meta = {
homepage = "https://github.com/crustymonkey/py-sonic";
description = "Python wrapper library for the Subsonic REST API";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ wenngle ];
};
}
|