python3Packages.systembridge: init at 1.1.1
This commit is contained in:
parent
dcb26988bd
commit
a8aa77b5db
32
pkgs/development/python-modules/systembridge/default.nix
Normal file
32
pkgs/development/python-modules/systembridge/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ lib
|
||||||
|
, aiohttp
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "systembridge";
|
||||||
|
version = "1.1.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "timmo001";
|
||||||
|
repo = "system-bridge-connector-py";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0vyfi7nyzkzsgg84n5wh4hzwvx6fybgqdzbabnsmvszb9sm1vlb2";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
];
|
||||||
|
|
||||||
|
# Project has no tests
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "systembridge" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python module for connecting to System Bridge";
|
||||||
|
homepage = "https://github.com/timmo001/system-bridge-connector-py";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -8231,6 +8231,8 @@ in {
|
|||||||
else
|
else
|
||||||
callPackage ../development/python-modules/sympy/1_5.nix { };
|
callPackage ../development/python-modules/sympy/1_5.nix { };
|
||||||
|
|
||||||
|
systembridge = callPackage ../development/python-modules/systembridge { };
|
||||||
|
|
||||||
systemd = callPackage ../development/python-modules/systemd {
|
systemd = callPackage ../development/python-modules/systemd {
|
||||||
inherit (pkgs) systemd;
|
inherit (pkgs) systemd;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user