Unverified Commit 2d239fa2 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python311Packages.amcrest: add changelog

- update disabled
parent 99687e1a
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -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 ];
  };