Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / dyn / default.nix
blob39e6ff6ed760a26feac92607f662247a8a65eea6
1 { lib, buildPythonPackage, fetchPypi, pytest, pytest-cov, mock
2 , pytest-xdist, covCore, glibcLocales }:
4 buildPythonPackage rec {
5   pname = "dyn";
6   version = "1.8.6";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "sha256-933etYrKRgSqJfOMIuIDL4Uv4/RdSEFMNWFtW5qiPpA=";
11   };
13   buildInputs = [ glibcLocales ];
15   nativeCheckInputs = [
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;
25   LC_ALL="en_US.UTF-8";
27   meta = with lib; {
28     description = "Dynect dns lib";
29     homepage = "https://dyn.readthedocs.org/en/latest/intro.html";
30     license = licenses.bsd3;
31   };