Unverified Commit c2b01772 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #280752 from graham33/fix/diff-cover

python3Packages.diff-cover: fix to use pyproject
parents 414c52bb a55dc4f5
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@
, jinja2
, jinja2-pluralize
, pluggy
, poetry-core
, pycodestyle
, pyflakes
, pygments
@@ -19,7 +20,7 @@
buildPythonPackage rec {
  pname = "diff-cover";
  version = "8.0.1";
  format = "setuptools";
  format = "pyproject";

  disabled = pythonOlder "3.7";

@@ -29,6 +30,10 @@ buildPythonPackage rec {
    hash = "sha256-zDnRmety/kG83P7hZOtbWRUztMYlWA4/mprMaGkGTXw=";
  };

  nativeBuildInputs = [
    poetry-core
  ];

  propagatedBuildInputs = [
    chardet
    jinja2