Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / dyn / default.nix
blobc391250d95179a384360c7c9fb170d275c41b908
1 { lib, buildPythonPackage, fetchPypi, pytest, pytest-cov, mock
2 , pytest-xdist, cov-core, glibcLocales }:
4 buildPythonPackage rec {
5   pname = "dyn";
6   version = "1.8.6";
7   format = "setuptools";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "sha256-933etYrKRgSqJfOMIuIDL4Uv4/RdSEFMNWFtW5qiPpA=";
12   };
14   buildInputs = [ glibcLocales ];
16   nativeCheckInputs = [
17     pytest
18     pytest-cov
19     mock
20     pytest-xdist
21     cov-core
22   ];
23   # Disable checks because they are not stateless and require internet access.
24   doCheck = false;
26   LC_ALL="en_US.UTF-8";
28   meta = with lib; {
29     description = "Dynect dns lib";
30     homepage = "https://dyn.readthedocs.org/en/latest/intro.html";
31     license = licenses.bsd3;
32   };