python3Packages.py-sonic: init at 0.7.7
This commit is contained in:
parent
582f5cea5f
commit
d1caa9bcaf
2 changed files with 25 additions and 0 deletions
23
pkgs/development/python-modules/py-sonic/default.nix
Normal file
23
pkgs/development/python-modules/py-sonic/default.nix
Normal 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; [ ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -5412,6 +5412,8 @@ in {
|
||||||
|
|
||||||
pysolr = callPackage ../development/python-modules/pysolr { };
|
pysolr = callPackage ../development/python-modules/pysolr { };
|
||||||
|
|
||||||
|
py-sonic = callPackage ../development/python-modules/py-sonic { };
|
||||||
|
|
||||||
pysonos = callPackage ../development/python-modules/pysonos { };
|
pysonos = callPackage ../development/python-modules/pysonos { };
|
||||||
|
|
||||||
pysoundfile = self.soundfile; # Alias added 23-06-2019
|
pysoundfile = self.soundfile; # Alias added 23-06-2019
|
||||||
|
|
Loading…
Reference in a new issue