Merge pull request #196572 from r-ryantm/auto-update/python310Packages.libpyfoscam
python310Packages.libpyfoscam: 1.1 -> 1.2.1
This commit is contained in:
commit
0983633091
1 changed files with 10 additions and 4 deletions
|
@ -1,25 +1,31 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "libpyfoscam";
|
||||
version = "1.1";
|
||||
version = "1.2.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "c274cafd2c6493ab397fe9f0f8aae0b2c35c7c661fe76dde3bd2f1cd56b8fc32";
|
||||
hash = "sha256-2E6zQT86UEOKoFnAfXfeWt352HIdOQZBGy5vR0WQO6Y=";
|
||||
};
|
||||
|
||||
# tests need access to a camera
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "libpyfoscam" ];
|
||||
pythonImportsCheck = [
|
||||
"libpyfoscam"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
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;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue