python312Packages.pynetbox: 7.3.4 -> 7.4.0 (#333250)
This commit is contained in:
commit
0ba494f770
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user