Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 520 B view raw
1{ lib, buildPythonPackage, fetchPypi, pytest }: 2 3buildPythonPackage rec { 4 pname = "pynmea2"; 5 version = "1.15.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "8b83fa7e3e668af5e182ef1c2fd4a535433ecadf60d7b627280172d695a1646b"; 10 }; 11 12 checkInputs = [ pytest ]; 13 checkPhase = "pytest"; 14 15 meta = { 16 homepage = https://github.com/Knio/pynmea2; 17 description = "Python library for the NMEA 0183 protcol"; 18 license = lib.licenses.mit; 19 maintainers = with lib.maintainers; [ geistesk ]; 20 }; 21}