mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
32 lines
906 B
Nix
32 lines
906 B
Nix
{ lib
|
|
, python3Packages
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "lexicon";
|
|
version = "3.3.26";
|
|
|
|
propagatedBuildInputs = with python3Packages; [ requests tldextract future cryptography pyyaml boto3 zeep xmltodict beautifulsoup4 dnspython pynamecheap softlayer transip localzone ];
|
|
|
|
checkInputs = with python3Packages; [ pytest pytestcov pytest_xdist vcrpy mock ];
|
|
|
|
checkPhase = ''
|
|
pytest --ignore=lexicon/tests/providers/test_auto.py
|
|
'';
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AnalogJ";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0k41l5n80hsfr0dkijf4hhkhz6iiwja4aj9q2jdiqsg9fjrmhfrv";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Manipulate DNS records on various DNS providers in a standardized way.";
|
|
homepage = "https://github.com/AnalogJ/lexicon";
|
|
maintainers = with maintainers; [ flyfloh ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|