2020-10-15 19:05:13 +11:00
|
|
|
{ stdenv
|
2021-02-01 08:45:20 +11:00
|
|
|
, lib
|
2020-10-15 19:05:13 +11:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "py-sonic";
|
|
|
|
version = "0.7.7";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0wh2phg8h02a6vlpqd0widd6g8ng142vzmk8hpyx0bnwn2i45sjc";
|
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-02-01 08:45:20 +11:00
|
|
|
meta = with lib; {
|
2020-10-15 19:05:13 +11:00
|
|
|
homepage = "https://stuffivelearned.org/doku.php?id=programming:python:py-sonic";
|
2021-02-01 08:45:20 +11:00
|
|
|
license = licenses.gpl3;
|
2020-10-15 19:05:13 +11:00
|
|
|
description = "A python wrapper library for the Subsonic REST API";
|
|
|
|
};
|
|
|
|
}
|