localzone: init at 0.9.5
This commit is contained in:
parent
2228e3ad12
commit
1c94a83a5f
34
pkgs/development/python-modules/localzone/default.nix
Normal file
34
pkgs/development/python-modules/localzone/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
@ -6902,6 +6902,8 @@ in {
|
||||
inherit python;
|
||||
})).python;
|
||||
|
||||
localzone = callPackage ../development/python-modules/localzone { };
|
||||
|
||||
scour = callPackage ../development/python-modules/scour { };
|
||||
|
||||
pymssql = callPackage ../development/python-modules/pymssql { };
|
||||
|
Loading…
Reference in New Issue
Block a user