1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-01 18:12:46 +00:00
nixpkgs/pkgs/development/python-modules/dyn/default.nix

35 lines
776 B
Nix
Raw Normal View History

2017-09-14 02:43:26 +01:00
{ stdenv, buildPythonPackage, fetchPypi, pytest, pytestcov, mock, pytestpep8
, pytest_xdist, covCore, glibcLocales }:
buildPythonPackage rec {
pname = "dyn";
2017-10-25 19:04:35 +01:00
version = "1.8.0";
2017-09-14 02:43:26 +01:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-10-25 19:04:35 +01:00
sha256 = "4ab3cd9a1478674cf2d2aa6740fb0ddf77daaa9ab3e35e5d2bc92f60301f8523";
2017-09-14 02:43:26 +01:00
};
buildInputs = [ glibcLocales ];
checkInputs = [
pytest
pytestcov
mock
pytestpep8
pytest_xdist
covCore
];
# Disable checks because they are not stateless and require internet access.
doCheck = false;
LC_ALL="en_US.UTF-8";
meta = with stdenv.lib; {
description = "Dynect dns lib";
homepage = "http://dyn.readthedocs.org/en/latest/intro.html";
license = licenses.bsd3;
};
}