File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed
development/python-modules/flexit-bacnet Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ buildPythonPackage ,
3+ fetchFromGitHub ,
4+ lib ,
5+ setuptools ,
6+ } :
7+
8+ buildPythonPackage rec {
9+ pname = "flexit-bacnet" ;
10+ version = "2.2.1" ;
11+ pyproject = true ;
12+
13+ src = fetchFromGitHub {
14+ owner = "piotrbulinski" ;
15+ repo = "flexit_bacnet" ;
16+ rev = "refs/tags/${ version } " ;
17+ hash = "sha256-Cy/WHKtJoZWSFOs+9rBYSLqZTF/68WRM1HiYXDyb9KM=" ;
18+ } ;
19+
20+ build-system = [ setuptools ] ;
21+
22+ pythonImportsCheck = [ "flexit_bacnet" ] ;
23+
24+ # upstream has no tests
25+ doCheck = false ;
26+
27+ meta = {
28+ changelog = "https://github.com/piotrbulinski/flexit_bacnet/releases/tag/${ version } " ;
29+ description = "Client BACnet library for Flexit Nordic series of air handling units" ;
30+ homepage = "https://github.com/piotrbulinski/flexit_bacnet" ;
31+ license = lib . licenses . mit ;
32+ maintainers = with lib . maintainers ; [ dotlambda ] ;
33+ } ;
34+ }
Original file line number Diff line number Diff line change @@ -4530,6 +4530,8 @@ self: super: with self; {
45304530
45314531 flexcache = callPackage ../development/python-modules/flexcache { };
45324532
4533+ flexit-bacnet = callPackage ../development/python-modules/flexit-bacnet { };
4534+
45334535 flexmock = callPackage ../development/python-modules/flexmock { };
45344536
45354537 flexparser = callPackage ../development/python-modules/flexparser { };
You can’t perform that action at this time.
0 commit comments