Merge pull request #99219 from wenngle/pysonic
python3Packages.py-sonic: init at 0.7.7
This commit is contained in:
commit
ceba0ceee9
|
@ -9716,4 +9716,10 @@
|
|||
fingerprint = "D446 E58D 87A0 31C7 EC15 88D7 B461 2924 45C6 E696";
|
||||
}];
|
||||
};
|
||||
wenngle = {
|
||||
name = "Zeke Stephens";
|
||||
email = "zekestephens@gmail.com";
|
||||
github = "wenngle";
|
||||
githubId = 63376671;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -0,0 +1,23 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, isPy27 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "py-sonic";
|
||||
version = "0.7.7";
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "4cea42a2b0dc2ed0fd8568d6bf0509cfa2675a8b1c347ce9364a00881ebc0272";
|
||||
};
|
||||
|
||||
# package has no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "libsonic" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/crustymonkey/py-sonic";
|
||||
description = "A python wrapper library for the Subsonic REST API";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ wenngle ];
|
||||
};
|
||||
}
|
|
@ -5412,6 +5412,8 @@ in {
|
|||
|
||||
pysolr = callPackage ../development/python-modules/pysolr { };
|
||||
|
||||
py-sonic = callPackage ../development/python-modules/py-sonic { };
|
||||
|
||||
pysonos = callPackage ../development/python-modules/pysonos { };
|
||||
|
||||
pysoundfile = self.soundfile; # Alias added 23-06-2019
|
||||
|
|
Loading…
Reference in New Issue