pythonPackages.backports_unittest-mock: Disable tests

This commit is contained in:
Sandro Jäckel 2020-12-23 20:53:28 +01:00
parent 49ca6941c2
commit 6481892b07
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -13,9 +13,14 @@ buildPythonPackage rec {
buildInputs = [ setuptools_scm ];
# does not contain tests
doCheck = false;
pythonImportsCheck = [ "backports.unittest_mock" ];
meta = with stdenv.lib; {
description = "Provides a function install() which makes the mock module";
homepage = "https://github.com/jaraco/backports.unittest_mock";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}