poetry2nix/tests/canonical-module-names/poetry-git-overlay.nix
adisbladis 9dfb080d3f
Add canonicalisation of module names
This shouldn't be required and I think that these are actually
packaging bugs and not something that poetry2nix should really be
concerned with.

Closes #84
2020-04-15 10:24:46 +01:00

14 lines
364 B
Nix

{ pkgs }:
self: super: {
pyramid-deferred-sqla = super.pyramid-deferred-sqla.overridePythonAttrs (
_: {
src = pkgs.fetchgit {
url = "https://github.com/niteoweb/pyramid_deferred_sqla.git";
rev = "639b822d16aff7d732a4da2d3752cfdecee00aef";
sha256 = "0k3azmnqkriy0nz8g2g8fjhfa25i0973pjqhqsfd33ir0prwllz7";
};
}
);
}