Merge pull request #196572 from r-ryantm/auto-update/python310Packages.libpyfoscam

python310Packages.libpyfoscam: 1.1 -> 1.2.1
This commit is contained in:
Fabian Affolter 2022-10-18 23:32:05 +02:00 committed by GitHub
commit 0983633091
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,25 +1,31 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "libpyfoscam"; pname = "libpyfoscam";
version = "1.1"; version = "1.2.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "c274cafd2c6493ab397fe9f0f8aae0b2c35c7c661fe76dde3bd2f1cd56b8fc32"; hash = "sha256-2E6zQT86UEOKoFnAfXfeWt352HIdOQZBGy5vR0WQO6Y=";
}; };
# tests need access to a camera # tests need access to a camera
doCheck = false; doCheck = false;
pythonImportsCheck = [ "libpyfoscam" ]; pythonImportsCheck = [
"libpyfoscam"
];
meta = with lib; { meta = with lib; {
description = "Python Library for Foscam IP Cameras"; description = "Python Library for Foscam IP Cameras";
homepage = "https://github.com/viswa-swami/python-foscam"; homepage = "https://github.com/krmarien/python-foscam";
license = licenses.lgpl3Plus; license = licenses.lgpl3Plus;
maintainers = with maintainers; [ dotlambda ]; maintainers = with maintainers; [ dotlambda ];
}; };