Skip to content

Commit cb79c0d

Browse files
committed
feat: add pip builds
In the impure step of the pure build, this uses the `pip download` command to download binary wheels and source distributions into the `$out/libexec/deps` directory. Then in the pure build we simply install everything in that directory.
1 parent 910e9af commit cb79c0d

File tree

13 files changed

+558
-0
lines changed

13 files changed

+558
-0
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ ruby:
2424
rust:
2525
./test.sh quotes-app-rust
2626

27+
pip:
28+
./test.sh quotes-app-pip
29+
2730

2831
clean:
2932
@for dir in $(shell ls -d */ | tr -d '/'); do \

quotes-app-pip/.flox/.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
env/manifest.lock linguist-generated=true linguist-language=JSON

quotes-app-pip/.flox/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
run/
2+
cache/
3+
lib/
4+
log/
5+
!env/

quotes-app-pip/.flox/env.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"name": "quotes-app-pip",
3+
"version": 1
4+
}

quotes-app-pip/.flox/env/manifest.lock

Lines changed: 290 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)