pythonPackages.pynmea2: 1.15.0 -> 1.16.0

This commit is contained in:
Alvar Penning 2021-02-23 09:38:52 +01:00
parent 733a6f8564
commit ad42de8250

View File

@ -1,16 +1,15 @@
{ lib, buildPythonPackage, fetchPypi, pytest }: { lib, buildPythonPackage, fetchPypi, pytestCheckHook }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pynmea2"; pname = "pynmea2";
version = "1.15.0"; version = "1.16.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "8b83fa7e3e668af5e182ef1c2fd4a535433ecadf60d7b627280172d695a1646b"; sha256 = "0w9g5qh573276404f04b46684ydlakv30ds0x0r4kcl370ljmfsg";
}; };
checkInputs = [ pytest ]; checkInputs = [ pytestCheckHook ];
checkPhase = "pytest";
meta = { meta = {
homepage = "https://github.com/Knio/pynmea2"; homepage = "https://github.com/Knio/pynmea2";