10 buildPythonPackage rec {
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
18 inherit pname version;
19 hash = "sha256-lX9JyT9BUBgsI/j7UdE7syE+DxenngnIzKcFdZi1VyA=";
22 nativeBuildInputs = [ setuptools-scm ];
24 propagatedBuildInputs = [ makefun ];
27 substituteInPlace setup.cfg \
28 --replace "pytest-runner" ""
31 pythonImportsCheck = [ "decopatch" ];
33 # Tests would introduce multiple cirucular dependencies
34 # Affected: makefun, pytest-cases
38 description = "Python helper for decorators";
39 homepage = "https://github.com/smarie/python-decopatch";
40 license = licenses.bsd3;
41 maintainers = with maintainers; [ fab ];