python3Packages.libpyvivotek: init at 0.4.0

This commit is contained in:
Fabian Affolter 2021-11-20 21:17:40 +01:00
parent 293e6f0ce5
commit d66a25e89b
2 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,43 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, requests
, vcrpy
}:
buildPythonPackage rec {
pname = "libpyvivotek";
version = "0.4.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "HarlemSquirrel";
repo = "python-vivotek";
rev = "v${version}";
sha256 = "pNlnGpDjdYE7Lxog8GGZV+UZZmfmt5bwHof5LngPQjg=";
};
propagatedBuildInputs = [
requests
];
checkInputs = [
pytestCheckHook
vcrpy
];
pythonImportsCheck = [
"libpyvivotek"
];
meta = with lib; {
description = "Python Library for Vivotek IP Cameras";
homepage = "https://github.com/HarlemSquirrel/python-vivotek";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -4354,6 +4354,8 @@ in {
libpyfoscam = callPackage ../development/python-modules/libpyfoscam { };
libpyvivotek = callPackage ../development/python-modules/libpyvivotek { };
libredwg = toPythonModule (pkgs.libredwg.override {
enablePython = true;
inherit (self) python libxml2;