Merge pull request #99219 from wenngle/pysonic

python3Packages.py-sonic: init at 0.7.7
This commit is contained in:
Martin Weinelt 2020-10-02 22:31:53 +02:00 committed by GitHub
commit ceba0ceee9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 31 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -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 ];
};
}

View file

@ -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