at 23.05-pre 709 B view raw
1{ lib, buildPythonPackage, fetchPypi, pytest, pytest-cov, mock 2, pytest-xdist, covCore, glibcLocales }: 3 4buildPythonPackage rec { 5 pname = "dyn"; 6 version = "1.8.1"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "e112149d48b4500c18b3cfb6e0e6e780bb5aa0e56ff87cac412280200b9ec8bf"; 11 }; 12 13 buildInputs = [ glibcLocales ]; 14 15 checkInputs = [ 16 pytest 17 pytest-cov 18 mock 19 pytest-xdist 20 covCore 21 ]; 22 # Disable checks because they are not stateless and require internet access. 23 doCheck = false; 24 25 LC_ALL="en_US.UTF-8"; 26 27 meta = with lib; { 28 description = "Dynect dns lib"; 29 homepage = "https://dyn.readthedocs.org/en/latest/intro.html"; 30 license = licenses.bsd3; 31 }; 32}