python312Packages.pynetbox: 7.3.4 -> 7.4.0 (#333250)

This commit is contained in:
OTABI Tomoya 2024-09-13 21:14:34 +09:00 committed by GitHub
commit 0ba494f770
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,34 +2,38 @@
lib, lib,
buildPythonPackage, buildPythonPackage,
fetchFromGitHub, fetchFromGitHub,
setuptools,
setuptools-scm, setuptools-scm,
packaging, packaging,
requests, requests,
six,
pytestCheckHook, pytestCheckHook,
pyyaml, pyyaml,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pynetbox"; pname = "pynetbox";
version = "7.3.4"; version = "7.4.0";
format = "setuptools"; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "netbox-community"; owner = "netbox-community";
repo = pname; repo = "pynetbox";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-Ie309I19BhzASrmc3Ws1zV/BySc49AhFPNrNKQhTD0U="; hash = "sha256-JOUgQvOtvXRDM79Sp472OHPh1YEoA82T3R9aZFes8SI=";
}; };
nativeBuildInputs = [ setuptools-scm ]; build-system = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [ dependencies = [
packaging packaging
requests requests
six
]; ];
pythonImportsCheck = [ "pynetbox" ];
nativeCheckInputs = [ nativeCheckInputs = [
pytestCheckHook pytestCheckHook
pyyaml pyyaml