python3Packages.ipwhl: switch to pypaBuildHook

This commit is contained in:
Peder Bergebakken Sundt 2023-09-10 00:14:28 +02:00
parent fd22d2c146
commit bb35132ec0

View file

@ -1,10 +1,10 @@
{ lib, buildPythonPackage, pythonOlder, fetchFromSourcehut { lib, buildPythonPackage, pythonOlder, fetchFromSourcehut
, kubo, packaging, tomli }: , kubo, packaging, tomli, flit-core }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "ipwhl"; pname = "ipwhl";
version = "1.1.0"; version = "1.1.0";
format = "flit"; format = "pyproject";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchFromSourcehut { src = fetchFromSourcehut {
@ -14,6 +14,7 @@ buildPythonPackage rec {
hash = "sha256-YaIYcoUnbiv9wUOFIzGj2sWGbh7NsqRQcqOR2X6+QZA="; hash = "sha256-YaIYcoUnbiv9wUOFIzGj2sWGbh7NsqRQcqOR2X6+QZA=";
}; };
nativeBuildInputs = [ flit-core ];
buildInputs = [ kubo ]; buildInputs = [ kubo ];
propagatedBuildInputs = [ packaging tomli ]; propagatedBuildInputs = [ packaging tomli ];
doCheck = false; # there's no test doCheck = false; # there's no test