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

35 lines
666 B
Nix
Raw Normal View History

2020-01-25 12:05:42 +00:00
{ stdenv
, buildPythonPackage
, fetchFromGitHub
, dnspython_1
2020-01-25 12:05:42 +00:00
, sphinx
, pytest
}:
buildPythonPackage rec {
pname = "localzone";
version = "0.9.6";
2020-01-25 12:05:42 +00:00
src = fetchFromGitHub {
owner = "ags-slc";
repo = pname;
rev = "v${version}";
sha256 = "154l7qglsm4jrhqddvlas8cgl9qm2z4dzihv05jmsyqjikcmfwk8";
2020-01-25 12:05:42 +00:00
};
propagatedBuildInputs = [ dnspython_1 sphinx ];
2020-01-25 12:05:42 +00:00
checkInputs = [ pytest ];
checkPhase = ''
pytest
'';
meta = with stdenv.lib; {
description = "A simple DNS library for managing zone files";
homepage = "https://localzone.iomaestro.com";
2020-01-25 12:05:42 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ flyfloh ];
};
}