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