Merge pull request #280752 from graham33/fix/diff-cover
python3Packages.diff-cover: fix to use pyproject
This commit is contained in:
commit
c2b0177244
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue