Merge pull request #173910 from dotlambda/rdflib-typo

python3Packages.rdflib: fix typo
main
Martin Weinelt 2 years ago committed by GitHub
commit d913798903
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  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