aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/localzone
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/localzone')
-rw-r--r--nixpkgs/pkgs/development/python-modules/localzone/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/localzone/default.nix b/nixpkgs/pkgs/development/python-modules/localzone/default.nix
new file mode 100644
index 00000000000..3827c297205
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/localzone/default.nix
@@ -0,0 +1,34 @@
+{ stdenv
+, buildPythonPackage
+, fetchFromGitHub
+, dnspython
+, sphinx
+, pytest
+}:
+
+buildPythonPackage rec {
+ pname = "localzone";
+ version = "0.9.6";
+
+ src = fetchFromGitHub {
+ owner = "ags-slc";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "154l7qglsm4jrhqddvlas8cgl9qm2z4dzihv05jmsyqjikcmfwk8";
+ };
+
+ 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 ];
+ };
+}