pythonPackages.pynmea2: init at 1.12.0 (#40757)

This commit is contained in:
Alvar 2018-05-24 01:08:37 +02:00 committed by Robert Schütz
parent 69dad57049
commit b656e03aae
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ lib, buildPythonPackage, fetchPypi, pytest }:
buildPythonPackage rec {
pname = "pynmea2";
version = "1.12.0";
src = fetchPypi {
inherit pname version;
sha256 = "185wxn8gag9whxmysspbh8s7wn3sh1glgf508w2zzwi4lklryl7i";
};
checkInputs = [ pytest ];
checkPhase = "pytest";
meta = {
homepage = https://github.com/Knio/pynmea2;
description = "Python library for the NMEA 0183 protcol";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ geistesk ];
};
}

View file

@ -11262,6 +11262,8 @@ in {
inherit (pkgs) fetchurl systemd;
};
pynmea2 = callPackage ../development/python-modules/pynmea2 {};
pynzb = buildPythonPackage (rec {
name = "pynzb-0.1.0";