Unverified Commit 46607b97 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.libpyvivotek: 0.4.0 -> 0.6.1 (#448367)

parents 7c0ae904 69baf1b6
Loading
Loading
Loading
Loading
+9 −8
Original line number Diff line number Diff line
@@ -3,26 +3,26 @@
  buildPythonPackage,
  fetchFromGitHub,
  pytestCheckHook,
  pythonOlder,
  requests,
  setuptools,
  vcrpy,
}:

buildPythonPackage rec {
  pname = "libpyvivotek";
  version = "0.4.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";
  version = "0.6.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "HarlemSquirrel";
    repo = "python-vivotek";
    rev = "v${version}";
    sha256 = "pNlnGpDjdYE7Lxog8GGZV+UZZmfmt5bwHof5LngPQjg=";
    tag = "v${version}";
    hash = "sha256-ai+FlvyrdeLyg/PJU8T0fTtbdnlyGo6mE4AM2oRATj8=";
  };

  propagatedBuildInputs = [ requests ];
  build-system = [ setuptools ];

  dependencies = [ requests ];

  nativeCheckInputs = [
    pytestCheckHook
@@ -34,6 +34,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python Library for Vivotek IP Cameras";
    homepage = "https://github.com/HarlemSquirrel/python-vivotek";
    changelog = "https://github.com/HarlemSquirrel/python-vivotek/releases/tag/${src.tag}";
    license = licenses.asl20;
    maintainers = with maintainers; [ fab ];
  };