1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 requests,
6}:
7
8buildPythonPackage rec {
9 pname = "pymvglive";
10 version = "1.1.4";
11 format = "setuptools";
12
13 src = fetchPypi {
14 pname = "PyMVGLive";
15 inherit version;
16 sha256 = "0sh4xm74im9qxzpbrlc5h1vnpgvpybnpvdcav1iws0b561zdr08c";
17 };
18
19 propagatedBuildInputs = [ requests ];
20
21 meta = with lib; {
22 description = "Get live-data from mvg-live.de";
23 homepage = "https://github.com/pc-coholic/PyMVGLive";
24 license = licenses.free;
25 };
26}