Skip to content

Commit ac05859

Browse files
committed
version 2.4.1
1 parent bbc6199 commit ac05859

File tree

4 files changed

+19
-5
lines changed

4 files changed

+19
-5
lines changed

Changelog.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# 2.4.1 (21 Sep 2020)
2+
bugfixes
3+
4+
### Fixes
5+
- `extra_pkgs` was broken: Packages didn't end up in final environment
6+
- null value error when inheriting passthru for disabled packages
7+
- Wrong provider detected for `sdist` packages in fixes.nix
8+
- overrides from fixes.nix didn't apply for `buildPythonPackage`
9+
10+
### Package Fixes
11+
- pip: allow from `sdist` provider
12+
- pip: remove `reproducible.patch` for versions < 20.0
13+
14+
115
# 2.4.0 (20 Sep 2020)
216
Global conditional overrides, simple overrides for buildPythonPackage, improved metadata extraction, fix wheel selection
317

Readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ Table of Contents
5454
You can either install mach-nix via pip or by using nix in case you already have the nix package manager installed.
5555
#### Installing via pip
5656
```shell
57-
pip install git+git://github.com/DavHau/mach-nix@2.4.0
57+
pip install git+git://github.com/DavHau/mach-nix@2.4.1
5858
```
5959
#### Installing via nix
6060
```shell
61-
nix-env -if https://github.com/DavHau/mach-nix/tarball/2.4.0 -A mach-nix
61+
nix-env -if https://github.com/DavHau/mach-nix/tarball/2.4.1 -A mach-nix
6262
```
6363

6464
---
@@ -90,7 +90,7 @@ You can call mach-nix directly from a nix expression
9090
let
9191
mach-nix = import (builtins.fetchGit {
9292
url = "https://github.com/DavHau/mach-nix/";
93-
ref = "refs/tags/2.4.0";
93+
ref = "refs/tags/2.4.1";
9494
});
9595
in
9696
mach-nix.mkPython {

examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
let
3434
mach-nix = import (builtins.fetchGit {
3535
url = "https://github.com/DavHau/mach-nix/";
36-
ref = "refs/tags/2.4.0";
36+
ref = "refs/tags/2.4.1";
3737
});
3838
in
3939
...

mach_nix/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.0
1+
2.4.1

0 commit comments

Comments
 (0)