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
];
passthru.extra-requires = {
passthru.extras-require = {
html = [
html5lib
];
@ -55,8 +55,8 @@ buildPythonPackage rec {
checkInputs = [
pytestCheckHook
]
++ passthru.extra-requires.networkx
++ passthru.extra-requires.html;
++ passthru.extras-require.networkx
++ passthru.extras-require.html;
pytestFlagsArray = [
# requires network access

Loading…
Cancel
Save