summary refs log tree commit diff
path: root/pkgs/development/python-modules/localzone
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/localzone')
-rw-r--r--pkgs/development/python-modules/localzone/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/localzone/default.nix b/pkgs/development/python-modules/localzone/default.nix
new file mode 100644
index 00000000000..9c968fa3722
--- /dev/null
+++ b/pkgs/development/python-modules/localzone/default.nix
@@ -0,0 +1,34 @@
+{ stdenv
+, buildPythonPackage
+, fetchFromGitHub
+, dnspython
+, sphinx
+, pytest
+}:
+
+buildPythonPackage rec {
+  pname = "localzone";
+  version = "0.9.5";
+
+  src = fetchFromGitHub {
+    owner = "ags-slc";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "1zziqyhbg8vg901b4hjzzab0paag5cng48vk9xf1hchxk5naf58n";
+  };
+
+  propagatedBuildInputs = [ dnspython sphinx ];
+
+  checkInputs = [ pytest ];
+
+  checkPhase = ''
+    pytest
+  '';
+
+  meta = with stdenv.lib; {
+    description = "A simple DNS library for managing zone files";
+    homepage = https://localzone.iomaestro.com;
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ flyfloh ];
+  };
+}