python312Packages.rnginline: refactor

This commit is contained in:
Fabian Affolter
2024-05-11 10:02:25 +02:00
committed by GitHub
parent 59729c24fc
commit e66630e8c4
@@ -15,25 +15,28 @@
buildPythonPackage rec {
pname = "rnginline";
version = "1.0.0";
format = "pyproject";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-JWqzs+OqOynIAWYVgGrZiuiCqObAgGe6rBt0DcP3U6E=";
};
nativeBuildInputs = [
poetry-core
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"docopt-ng"
"importlib-metadata"
"lxml"
];
propagatedBuildInputs = [
build-system = [
poetry-core
];
nativeBuildInputs = [
pythonRelaxDepsHook
];
dependencies = [
docopt-ng
lxml
typing-extensions