1{
2 lib,
3 buildPythonPackage,
4 nipap,
5
6 # build deps
7 setuptools,
8}:
9
10buildPythonPackage rec {
11 pname = "pynipap";
12 pyproject = true;
13
14 inherit (nipap) version src;
15
16 sourceRoot = "${src.name}/pynipap";
17
18 build-system = [
19 setuptools
20 ];
21
22 doCheck = false; # tests require nose, /etc/nipap/nipap.conf and a running nipapd
23
24 meta = {
25 description = "Python client library for Neat IP Address Planner";
26 longDescription = ''
27 NIPAP is the best open source IPAM in the known universe,
28 challenging classical IP address management (IPAM) systems in many areas.
29 '';
30 homepage = "https://github.com/SpriteLink/NIPAP";
31 changelog = "https://github.com/SpriteLink/NIPAP/releases/tag/v${version}";
32 license = lib.licenses.mit;
33 maintainers = with lib.maintainers; [
34 lukegb
35 ];
36 platforms = lib.platforms.all;
37 };
38}