pythonPackages.pynmea2: init at 1.12.0 (#40757)
This commit is contained in:
parent
69dad57049
commit
b656e03aae
2 changed files with 23 additions and 0 deletions
21
pkgs/development/python-modules/pynmea2/default.nix
Normal file
21
pkgs/development/python-modules/pynmea2/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -11262,6 +11262,8 @@ in {
|
|||
inherit (pkgs) fetchurl systemd;
|
||||
};
|
||||
|
||||
pynmea2 = callPackage ../development/python-modules/pynmea2 {};
|
||||
|
||||
pynzb = buildPythonPackage (rec {
|
||||
name = "pynzb-0.1.0";
|
||||
|
||||
|
|
Loading…
Reference in a new issue