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