File tree Expand file tree Collapse file tree 3 files changed +35
-1
lines changed
development/python-modules/rfk101py Expand file tree Collapse file tree 3 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 25902590 ] ;
25912591 "idteck_prox" =
25922592 ps : with ps ; [
2593- ] ; # missing inputs: rfk101py
2593+ rfk101py
2594+ ] ;
25942595 "ifttt" =
25952596 ps : with ps ; [
25962597 pyfttt
Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments