Skip to content

Commit c1a807f

Browse files
authored
python3Packages.rfk101py: init at 0.0.1 (#435800)
2 parents 61c6acc + 9c37d97 commit c1a807f

File tree

3 files changed

+35
-1
lines changed

3 files changed

+35
-1
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
lib,
3+
buildPythonPackage,
4+
fetchPypi,
5+
setuptools,
6+
}:
7+
8+
buildPythonPackage rec {
9+
pname = "rfk101py";
10+
version = "0.0.1";
11+
pyproject = true;
12+
13+
src = fetchPypi {
14+
inherit pname version;
15+
hash = "sha256-O8W404opbjH4AIUAfM01xrzXM/2WzU6q7uxM5ySgdhg=";
16+
};
17+
18+
build-system = [ setuptools ];
19+
20+
# Package has no tests
21+
doCheck = false;
22+
23+
pythonImportsCheck = [ "rfk101py" ];
24+
25+
meta = {
26+
description = "RFK101 Proximity card reader over Ethernet";
27+
homepage = "https://github.com/dubnom/rfk101py";
28+
license = lib.licenses.mit;
29+
maintainers = [ lib.maintainers.jamiemagee ];
30+
};
31+
}

pkgs/servers/home-assistant/component-packages.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2590,7 +2590,8 @@
25902590
];
25912591
"idteck_prox" =
25922592
ps: with ps; [
2593-
]; # missing inputs: rfk101py
2593+
rfk101py
2594+
];
25942595
"ifttt" =
25952596
ps: with ps; [
25962597
pyfttt

pkgs/top-level/python-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15844,6 +15844,8 @@ self: super: with self; {
1584415844

1584515845
rfcat = callPackage ../development/python-modules/rfcat { };
1584615846

15847+
rfk101py = callPackage ../development/python-modules/rfk101py { };
15848+
1584715849
rflink = callPackage ../development/python-modules/rflink { };
1584815850

1584915851
rgpio = toPythonModule (

0 commit comments

Comments
 (0)