Merge pull request #114085 from oxzi/python-pynmea2-1.16.0

pythonPackages.pynmea2: 1.15.0 -> 1.16.0
This commit is contained in:
Sandro 2021-02-23 15:16:28 +01:00 committed by GitHub
commit 2916b3b2da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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