forked from mirrors/nixpkgs
Merge pull request #187335 from fabaff/aioblescan
python310Packages.bless: init at 0.2.4
This commit is contained in:
commit
128dabead0
45
pkgs/development/python-modules/bless/default.nix
Normal file
45
pkgs/development/python-modules/bless/default.nix
Normal file
|
@ -0,0 +1,45 @@
|
|||
{ lib
|
||||
, aioconsole
|
||||
, bleak
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, numpy
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "bless";
|
||||
version = "0.2.4";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kevincar";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-lC1M6/9uawi4KpcK4/fAygENa9rZv9c7qCVdsZYtl5Q=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
bleak
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
aioconsole
|
||||
numpy
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"bless"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library for creating a BLE Generic Attribute Profile (GATT) server";
|
||||
homepage = "https://github.com/kevincar/bless";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -1365,6 +1365,8 @@ in {
|
|||
|
||||
blebox-uniapi = callPackage ../development/python-modules/blebox-uniapi { };
|
||||
|
||||
bless = callPackage ../development/python-modules/bless { };
|
||||
|
||||
blessed = callPackage ../development/python-modules/blessed { };
|
||||
|
||||
blessings = callPackage ../development/python-modules/blessings { };
|
||||
|
|
Loading…
Reference in a new issue