pythonPackages.PyMVGLive: init at 1.1.4

This commit is contained in:
Franz Pletz
2018-05-07 12:34:29 +02:00
parent 95928538a5
commit c7d735a27b
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{ lib, stdenv, 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;
};
}