ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pymvglive / default.nix
blobe2c2e8f05a1c4e09a6ff0e7984dbdaba314a1a1e
1 { lib, buildPythonPackage, fetchPypi, requests }:
3 buildPythonPackage rec {
4   pname = "PyMVGLive";
5   version = "1.1.4";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0sh4xm74im9qxzpbrlc5h1vnpgvpybnpvdcav1iws0b561zdr08c";
10   };
12   propagatedBuildInputs = [ requests ];
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   };