pythonPackages.nixpkgs: Disable tests

+4
+4
pkgs/development/python-modules/nixpkgs/default.nix
··· 19 19 buildInputs = [ pbr ]; 20 20 propagatedBuildInputs = [ pythonix ]; 21 21 22 + # does not have any tests 23 + doCheck = false; 24 + pythonImportsCheck = [ "nixpkgs" ]; 25 + 22 26 meta = with stdenv.lib; { 23 27 description = "Allows to `from nixpkgs import` stuff in interactive Python sessions"; 24 28 homepage = "https://github.com/t184256/nixpkgs-python-importer";