10 buildPythonPackage rec {
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
18 owner = "inveniosoftware";
21 hash = "sha256-lQyPs3lQWtsvNPuvvwJUTDzrFaOX5uwGuRHe3yWUheU=";
24 nativeBuildInputs = [ setuptools-scm ];
26 nativeCheckInputs = [ pytestCheckHook ];
29 substituteInPlace setup.py \
30 --replace "'pytest-runner>=2.7'," ""
31 substituteInPlace pytest.ini \
32 --replace ' --isort --pydocstyle --pycodestyle --doctest-glob="*.rst" --doctest-modules --cov=dictdiffer --cov-report=term-missing' ""
35 pythonImportsCheck = [ "dictdiffer" ];
38 description = "Module to diff and patch dictionaries";
39 homepage = "https://github.com/inveniosoftware/dictdiffer";
40 license = licenses.mit;
41 maintainers = with maintainers; [ fab ];