aaaaa
This commit is contained in:
parent
414e830efa
commit
d3a93fd115
35 changed files with 1832 additions and 228 deletions
53
packages/uhid.nix
Normal file
53
packages/uhid.nix
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
{
|
||||
lib,
|
||||
fetchPypi,
|
||||
python3Packages,
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "python-uhid";
|
||||
version = "0.0.1";
|
||||
pyproject = true;
|
||||
doCheck = false;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit version;
|
||||
pname = "uhid";
|
||||
hash = "sha256-PHgkiYkNvzNiH7LDDRrIH7wbPvGRGufUxzkHzcD1mqs=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
python3Packages.setuptools
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
|
||||
# python3Packages.poetry-core
|
||||
# python3Packages.fido2
|
||||
# python3Packages.pyscard
|
||||
# python3Packages.uhid
|
||||
];
|
||||
|
||||
# nativeCheckInputs =
|
||||
# with python3Packages;
|
||||
# [
|
||||
# pytestCheckHook
|
||||
# pytest-cov-stub
|
||||
# mock
|
||||
# pillow
|
||||
# typeguard
|
||||
# ]
|
||||
# ++ [
|
||||
# writableTmpDirAsHomeHook
|
||||
# ];
|
||||
|
||||
meta = {
|
||||
description = "Pure Python typed UHID wrapper.";
|
||||
homepage = "https://github.com/FFY00/python-uhid/";
|
||||
maintainers = with lib.maintainers; [
|
||||
# TODO
|
||||
];
|
||||
license = lib.licenses.mit;
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue