python3Packages.pymodes: init at 2.11

This commit is contained in:
snicket2100 2022-07-09 11:14:14 +02:00 committed by Fabian Affolter
parent 9ef587a977
commit da5d2f176d
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ lib
, stdenv
, fetchFromGitHub
, buildPythonPackage
, pythonOlder
, pytest
, numpy
, pyzmq }:
buildPythonPackage rec {
pname = "pymodes";
version = "2.11";
src = fetchFromGitHub {
owner = "junzis";
repo = "pyModeS";
rev = "b36540e2a17c49bf36bc824bc1e4488306d1a1a0";
sha256 = "1j8brmiz0pqiv9zy2fxg1w65n9pzfnbag54mqkg5yrvz25b93nba";
};
format = "setuptools";
disabled = pythonOlder "3.7";
propagatedBuildInputs = [ numpy pyzmq ];
checkInputs = [ pytest ];
checkPhase = "pytest";
meta = with lib; {
description = "Python Mode-S and ADS-B Decoder";
homepage = "https://github.com/junzis/pyModeS";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ snicket2100 ];
};
}

View File

@ -13216,6 +13216,8 @@ self: super: with self; {
pyinfra = callPackage ../development/python-modules/pyinfra { };
pymodes = callPackage ../development/python-modules/pymodes { };
pytibber = callPackage ../development/python-modules/pytibber { };
pytile = callPackage ../development/python-modules/pytile { };