Skip to content

Commit

Permalink
Merge pull request #330 from jgeerds/override-updates
Browse files Browse the repository at this point in the history
Add overrides for multiple packages
  • Loading branch information
adisbladis authored Jul 1, 2021
2 parents fe0227e + 00afb77 commit 20b868d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1865,4 +1865,28 @@ self: super:
'';
});

pygraphviz = super.pygraphviz.overridePythonAttrs (old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.pkg-config ];
buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.graphviz ];
});

pyjsg = super.pyjsg.overridePythonAttrs (old: {
buildInputs = (old.buildInputs or [ ]) ++ [ self.pbr ];
});

pyshex = super.pyshex.overridePythonAttrs (old: {
buildInputs = (old.buildInputs or [ ]) ++ [ self.pbr ];
});

pyshexc = super.pyshexc.overridePythonAttrs (old: {
buildInputs = (old.buildInputs or [ ]) ++ [ self.pbr ];
});

shexjsg = super.shexjsg.overridePythonAttrs (old: {
buildInputs = (old.buildInputs or [ ]) ++ [ self.pbr ];
});

sparqlslurper = super.sparqlslurper.overridePythonAttrs (old: {
buildInputs = (old.buildInputs or [ ]) ++ [ self.pbr ];
});
}

0 comments on commit 20b868d

Please sign in to comment.