0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

python3Packages.buildbot-pkg: use pythonImportsCheck

This commit is contained in:
Ben Wolsieffer 2020-12-05 13:43:40 -05:00
parent 920f970a5a
commit efabdf3db9

View file

@ -15,6 +15,11 @@ buildPythonPackage rec {
substituteInPlace buildbot_pkg.py --replace "os.listdir = listdir" ""
'';
# No tests
doCheck = false;
pythonImportsCheck = [ "buildbot_pkg" ];
disabled = !isPy3k;
meta = with lib; {