mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
python3Packages.pyprobeplus: init at 1.0.1 (#414107)
This commit is contained in:
commit
ef7639f259
2 changed files with 41 additions and 0 deletions
39
pkgs/development/python-modules/pyprobeplus/default.nix
Normal file
39
pkgs/development/python-modules/pyprobeplus/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
bleak,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
lib,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyprobeplus";
|
||||
version = "1.0.1";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pantherale0";
|
||||
repo = "pyprobeplus";
|
||||
tag = version;
|
||||
hash = "sha256-ixrkwnvqjHwqnKG3Xo4qJP/FcP7fuAOPKpar13e8U1w=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
bleak
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "pyprobeplus" ];
|
||||
|
||||
# upstream has no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/pantherale0/pyprobeplus/releases/tag/${src.tag}";
|
||||
description = "Generic library to interact with a Probe Plus BLE device";
|
||||
homepage = "https://github.com/pantherale0/pyprobeplus";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
|
@ -13275,6 +13275,8 @@ self: super: with self; {
|
|||
|
||||
pyprobables = callPackage ../development/python-modules/pyprobables { };
|
||||
|
||||
pyprobeplus = callPackage ../development/python-modules/pyprobeplus { };
|
||||
|
||||
pyprof2calltree = callPackage ../development/python-modules/pyprof2calltree { };
|
||||
|
||||
pyproj = callPackage ../development/python-modules/pyproj { };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue