python311Packages.amcrest: add changelog

- update disabled
This commit is contained in:
Fabian Affolter
2023-09-13 22:55:21 +02:00
committed by GitHub
parent 99687e1a71
commit 2d239fa2f6
@@ -15,12 +15,14 @@
buildPythonPackage rec {
pname = "amcrest";
version = "1.9.8";
disabled = pythonOlder "3.6";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "tchellomello";
repo = "python-amcrest";
rev = version;
rev = "refs/tags/${version}";
hash = "sha256-v0jWEZo06vltEq//suGrvJ/AeeDxUG5CCFhbf03q34w=";
};
@@ -38,11 +40,14 @@ buildPythonPackage rec {
responses
];
pythonImportsCheck = [ "amcrest" ];
pythonImportsCheck = [
"amcrest"
];
meta = with lib; {
description = "Python module for Amcrest and Dahua Cameras";
homepage = "https://github.com/tchellomello/python-amcrest";
changelog = "https://github.com/tchellomello/python-amcrest/releases/tag/${version}";
license = with licenses; [ gpl2Only ];
maintainers = with maintainers; [ fab ];
};