1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/python-modules/localzone/default.nix
Tristan Helmich (omniIT) 7a85f34d7a python3Packages.localzone: Use dnspython_1
localzone is currently incompatible with dnspython 2
2020-10-04 13:04:36 +00:00

35 lines
666 B
Nix

{ stdenv
, buildPythonPackage
, fetchFromGitHub
, dnspython_1
, sphinx
, pytest
}:
buildPythonPackage rec {
pname = "localzone";
version = "0.9.6";
src = fetchFromGitHub {
owner = "ags-slc";
repo = pname;
rev = "v${version}";
sha256 = "154l7qglsm4jrhqddvlas8cgl9qm2z4dzihv05jmsyqjikcmfwk8";
};
propagatedBuildInputs = [ dnspython_1 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 ];
};
}