1 { lib, buildPythonPackage, fetchPypi, setuptools_scm, mock }:
3 buildPythonPackage rec {
4 pname = "backports.unittest_mock";
9 sha256 = "eff58e53de8fdeb27a1c87a9d57e7b91d15d1bc3854e85344b1a2e69f31ecda7";
12 propagatedBuildInputs = [ mock ];
14 buildInputs = [ setuptools_scm ];
16 # does not contain tests
18 pythonImportsCheck = [ "backports.unittest_mock" ];
21 description = "Provides a function install() which makes the mock module";
22 homepage = "https://github.com/jaraco/backports.unittest_mock";
23 license = licenses.mit;
24 maintainers = with maintainers; [ SuperSandro2000 ];