summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2018-06-24 16:49:12 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2018-06-24 17:39:01 +0200
commit8469c976154d73ee9a1e1d2750e2c05eed9bbc1d (patch)
tree2dd7d08cf6d857a0239f5eddd38824273d913912
parenta85a0b100eb3bd55894d42c2ac43d774ed8385af (diff)
downloadnixpkgs-8469c976154d73ee9a1e1d2750e2c05eed9bbc1d.tar
nixpkgs-8469c976154d73ee9a1e1d2750e2c05eed9bbc1d.tar.gz
nixpkgs-8469c976154d73ee9a1e1d2750e2c05eed9bbc1d.tar.bz2
nixpkgs-8469c976154d73ee9a1e1d2750e2c05eed9bbc1d.tar.lz
nixpkgs-8469c976154d73ee9a1e1d2750e2c05eed9bbc1d.tar.xz
nixpkgs-8469c976154d73ee9a1e1d2750e2c05eed9bbc1d.tar.zst
nixpkgs-8469c976154d73ee9a1e1d2750e2c05eed9bbc1d.zip
python.pkgs.user-agents: disable tests
The ua-parser bump 0.8.0 seems to have changed some behaviour. The
user-agents is still working in principle, though.
-rw-r--r--pkgs/development/python-modules/user-agents/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/user-agents/default.nix b/pkgs/development/python-modules/user-agents/default.nix
index 6b14eebb310..07cbdc57ef9 100644
--- a/pkgs/development/python-modules/user-agents/default.nix
+++ b/pkgs/development/python-modules/user-agents/default.nix
@@ -14,6 +14,8 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [ ua-parser ];
 
+  doCheck = false; # some tests fail due to ua-parser bump to 0.8.0
+
   meta = with stdenv.lib; {
     description = "A Python library to identify devices by parsing user agent strings";
     homepage = https://github.com/selwin/python-user-agents;