Merge pull request #285534 from chewblacka/fix-kiss-headers
python311Packages.kiss-headers: fix format to pyproject
This commit is contained in:
commit
dd32332f9c
1 changed files with 6 additions and 4 deletions
|
@ -1,9 +1,9 @@
|
|||
{ lib, buildPythonPackage, fetchFromGitHub, requests, pytestCheckHook }:
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, hatchling, requests, pytestCheckHook }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "kiss-headers";
|
||||
version = "2.4.3";
|
||||
format = "setuptools";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Ousret";
|
||||
|
@ -12,13 +12,15 @@ buildPythonPackage rec {
|
|||
hash = "sha256-WeAzlC1yT+0nPSuB278z8T0XvPjbre051f/Rva5ujAk=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ hatchling ];
|
||||
|
||||
propagatedBuildInputs = [ requests ];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.cfg \
|
||||
--replace "--cov=kiss_headers --doctest-modules --cov-report=term-missing -rxXs" "--doctest-modules -rxXs"
|
||||
substituteInPlace pyproject.toml \
|
||||
--replace-fail "--cov=kiss_headers --doctest-modules --cov-report=term-missing -rxXs" "--doctest-modules -rxXs"
|
||||
'';
|
||||
|
||||
disabledTestPaths = [
|
||||
|
|
Loading…
Reference in a new issue