mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
python3Packages.py-sonic: init at 0.7.7
This commit is contained in:
parent
582f5cea5f
commit
d1caa9bcaf
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 { };
|
||||
|
||||
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
Block a user