nixpkgs/pkgs/development/python-modules/dyn/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
702 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, pytest, pytest-cov, mock
, pytest-xdist, covCore, glibcLocales }:
2017-09-14 01:43:26 +00:00
buildPythonPackage rec {
pname = "dyn";
2023-03-25 01:51:37 +00:00
version = "1.8.6";
2017-09-14 01:43:26 +00:00
src = fetchPypi {
inherit pname version;
2023-03-25 01:51:37 +00:00
sha256 = "sha256-933etYrKRgSqJfOMIuIDL4Uv4/RdSEFMNWFtW5qiPpA=";
2017-09-14 01:43:26 +00:00
};
buildInputs = [ glibcLocales ];
nativeCheckInputs = [
2017-09-14 01:43:26 +00:00
pytest
pytest-cov
2017-09-14 01:43:26 +00:00
mock
pytest-xdist
2017-09-14 01:43:26 +00:00
covCore
];
# Disable checks because they are not stateless and require internet access.
doCheck = false;
LC_ALL="en_US.UTF-8";
meta = with lib; {
2017-09-14 01:43:26 +00:00
description = "Dynect dns lib";
homepage = "https://dyn.readthedocs.org/en/latest/intro.html";
2017-09-14 01:43:26 +00:00
license = licenses.bsd3;
};
}