depot/third_party/nixpkgs/pkgs/development/python-modules/pynetbox/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

51 lines
982 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools-scm
, packaging
, requests
, six
, pytestCheckHook
, pyyaml
}:
buildPythonPackage rec {
pname = "pynetbox";
version = "7.3.3";
format = "setuptools";
src = fetchFromGitHub {
owner = "netbox-community";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-QIvh24ZqnF8uF9HOuY0yt3QT/jHgJ2C916d+rBqezWQ=";
};
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
packaging
requests
six
];
nativeCheckInputs = [
pytestCheckHook
pyyaml
];
disabledTestPaths = [
# requires docker for integration test
"tests/integration"
];
meta = with lib; {
changelog = "https://github.com/netbox-community/pynetbox/releases/tag/v${version}";
description = "API client library for Netbox";
homepage = "https://github.com/netbox-community/pynetbox";
license = licenses.asl20;
maintainers = with maintainers; [ hexa ];
};
}