python3Packages.rdflib: fix typo

main
Robert Schütz 2 years ago
parent 91c498f0f2
commit 92d14637bc
  1. 6
      pkgs/development/python-modules/rdflib/default.nix

@ -43,7 +43,7 @@ buildPythonPackage rec {
importlib-metadata importlib-metadata
]; ];
passthru.extra-requires = { passthru.extras-require = {
html = [ html = [
html5lib html5lib
]; ];
@ -55,8 +55,8 @@ buildPythonPackage rec {
checkInputs = [ checkInputs = [
pytestCheckHook pytestCheckHook
] ]
++ passthru.extra-requires.networkx ++ passthru.extras-require.networkx
++ passthru.extra-requires.html; ++ passthru.extras-require.html;
pytestFlagsArray = [ pytestFlagsArray = [
# requires network access # requires network access

Loading…
Cancel
Save