Skip to content

Commit d76f747

Browse files
refactor(python): rename python-nix-template
Signed-off-by: Cameron Smith <cameron.ray.smith@gmail.com>
1 parent 8cfba6b commit d76f747

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nix/modules/python.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,13 @@
6161
lib.composeManyExtensions [
6262
(makeEditableOverlay baseWorkspace)
6363
(final: prev: {
64-
mypackage = prev.mypackage.overrideAttrs (old: {
64+
python-nix-template = prev.python-nix-template.overrideAttrs (old: {
6565
src = lib.fileset.toSource {
6666
root = old.src;
6767
fileset = lib.fileset.unions [
6868
(old.src + "/pyproject.toml")
6969
(old.src + "/README.md")
70-
(old.src + "/src/mypackage/__init__.py")
70+
(old.src + "/src/python_nix_template/__init__.py")
7171
];
7272
};
7373
nativeBuildInputs = old.nativeBuildInputs ++ final.resolveBuildSystem { editables = [ ]; };

0 commit comments

Comments
 (0)