lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

bcg: init at 1.17.0

+51
+49
pkgs/development/python-modules/bcg/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , appdirs 5 + , click 6 + , click-log 7 + , paho-mqtt 8 + , pyaml 9 + , pyserial 10 + , schema 11 + , simplejson 12 + }: 13 + buildPythonPackage rec { 14 + pname = "bcg"; 15 + version = "1.17.0"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "hardwario"; 19 + repo = "bch-gateway"; 20 + rev = "v${version}"; 21 + sha256 = "2Yh5MeIv+BIxjoO9GOPqq7xTAFhyBvnxPy7DeO2FrkI="; 22 + }; 23 + 24 + postPatch = '' 25 + sed -ri 's/@@VERSION@@/${version}/g' \ 26 + bcg/__init__.py setup.py 27 + ''; 28 + 29 + propagatedBuildInputs = [ 30 + appdirs 31 + click 32 + click-log 33 + paho-mqtt 34 + pyaml 35 + pyserial 36 + schema 37 + simplejson 38 + ]; 39 + 40 + pythonImportsCheck = [ "bcg" ]; 41 + 42 + meta = with lib; { 43 + homepage = "https://github.com/hardwario/bch-gateway"; 44 + description = "HARDWARIO Gateway (Python Application «bcg»)"; 45 + platforms = platforms.linux; 46 + license = licenses.mit; 47 + maintainers = with maintainers; [ cynerd ]; 48 + }; 49 + }
+2
pkgs/top-level/python-packages.nix
··· 1269 1269 1270 1270 bcdoc = callPackage ../development/python-modules/bcdoc { }; 1271 1271 1272 + bcg = callPackage ../development/python-modules/bcg { }; 1273 + 1272 1274 bch = callPackage ../development/python-modules/bch { }; 1273 1275 1274 1276 bcrypt = if stdenv.hostPlatform.system == "i686-linux" then