mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
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
|
||||
callPackage ../development/python-modules/sympy/1_5.nix { };
|
||||
|
||||
systembridge = callPackage ../development/python-modules/systembridge { };
|
||||
|
||||
systemd = callPackage ../development/python-modules/systemd {
|
||||
inherit (pkgs) systemd;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue