pythonPackages.nixpkgs: Disable tests

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