pythonPackages.nixpkgs: Disable tests

This commit is contained in:
Sandro Jäckel 2021-01-06 21:01:19 +01:00
parent 075da3928b
commit 7923272cd5
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -19,6 +19,10 @@ buildPythonPackage rec {
buildInputs = [ pbr ];
propagatedBuildInputs = [ pythonix ];
# does not have any tests
doCheck = false;
pythonImportsCheck = [ "nixpkgs" ];
meta = with stdenv.lib; {
description = "Allows to `from nixpkgs import` stuff in interactive Python sessions";
homepage = "https://github.com/t184256/nixpkgs-python-importer";