python3Packages.rsskey: switch to pypaBuildHook

This commit is contained in:
Peder Bergebakken Sundt 2023-09-10 00:32:57 +02:00
parent a0b432b97e
commit a99e50dd28

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, flit-core
, feedparser
, httpx
, loca
@ -11,13 +12,17 @@
buildPythonPackage rec {
pname = "rsskey";
version = "0.2.0";
format = "flit";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-QedLuwd0ES2LWhZ72Cjh3+ZZ7HbRyNsyLN9lNFbY5dQ=";
};
nativeBuildInputs = [
flit-core
];
propagatedBuildInputs = [
feedparser
httpx