summary refs log blame commit diff
path: root/pkgs/development/python-modules/pymvglive/default.nix
blob: 3b7011fa748210a51c2c0d6263eca9f7f91b2f05 (plain) (tree)
1
                                                 

















                                                                    
{ lib, buildPythonPackage, fetchPypi, requests }:

buildPythonPackage rec {
  pname = "PyMVGLive";
  version = "1.1.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0sh4xm74im9qxzpbrlc5h1vnpgvpybnpvdcav1iws0b561zdr08c";
  };

  propagatedBuildInputs = [ requests ];

  meta = with lib; {
    description = "get live-data from mvg-live.de";
    homepage = https://github.com/pc-coholic/PyMVGLive;
    license = licenses.free;
  };
}