nixpkgs/pkgs/development/python-modules/pynmea2/default.nix
Alvar Penning 0a53c6b565 maintainers: rename geistesk to oxzi
For reasons I have renamed my GitHub account and would like to include
this name change here.
2020-08-15 16:03:46 +02:00

22 lines
518 B
Nix

{ lib, buildPythonPackage, fetchPypi, pytest }:
buildPythonPackage rec {
pname = "pynmea2";
version = "1.15.0";
src = fetchPypi {
inherit pname version;
sha256 = "8b83fa7e3e668af5e182ef1c2fd4a535433ecadf60d7b627280172d695a1646b";
};
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; [ oxzi ];
};
}