python3Packages.warble: init at 1.2.9 (#238628)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
7f43f95381
commit
b337874d61
2 changed files with 41 additions and 0 deletions
39
pkgs/development/python-modules/warble/default.nix
Normal file
39
pkgs/development/python-modules/warble/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, cython
|
||||
, boost
|
||||
, bluez
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "warble";
|
||||
version = "1.2.9";
|
||||
format = "setuptools";
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-oezcRD1AddWmDYDxueE0EwK0+UN/EZ5GQxwkdCz4xoY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cython
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
boost
|
||||
bluez
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "mbientlab" "mbientlab.warble" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python bindings for MbientLab's Warble library";
|
||||
homepage = "https://github.com/mbientlab/pywarble";
|
||||
license = with licenses; [ unfree ];
|
||||
maintainers = with maintainers; [ stepbrobd ];
|
||||
platforms = [ "aarch64-linux" "x86_64-linux" ];
|
||||
};
|
||||
}
|
|
@ -12988,6 +12988,8 @@ self: super: with self; {
|
|||
|
||||
wandb = callPackage ../development/python-modules/wandb { };
|
||||
|
||||
warble = callPackage ../development/python-modules/warble { };
|
||||
|
||||
warcio = callPackage ../development/python-modules/warcio { };
|
||||
|
||||
ward = callPackage ../development/python-modules/ward { };
|
||||
|
|
Loading…
Reference in a new issue