2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-16 23:29:08 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-12-25 18:36:43 +00:00
|
|
|
, pythonOlder
|
2019-04-24 06:13:00 +01:00
|
|
|
, python
|
2018-10-16 23:29:08 +01:00
|
|
|
, mock
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-04-24 06:07:00 +01:00
|
|
|
pname = "python-mpd2";
|
2021-02-02 16:14:23 +00:00
|
|
|
version = "3.0.4";
|
2020-12-25 18:36:43 +00:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.6";
|
2018-10-16 23:29:08 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-02-02 16:14:23 +00:00
|
|
|
sha256 = "1r8saq1460yfa0sxfrvxqs2r453wz2xchlc9gzbpqznr49786rvs";
|
2018-10-16 23:29:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ mock ];
|
2019-04-24 06:13:00 +01:00
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
${python.interpreter} -m unittest mpd.tests
|
2018-10-16 23:29:08 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-16 23:29:08 +01:00
|
|
|
description = "A Python client module for the Music Player Daemon";
|
|
|
|
homepage = "https://github.com/Mic92/python-mpd2";
|
|
|
|
license = licenses.lgpl3Plus;
|
2021-01-22 20:14:54 +00:00
|
|
|
maintainers = with maintainers; [ rvl mic92 hexa ];
|
2018-10-16 23:29:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|