Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
sec23
korte
pymagglobal
Commits
abdf64dc
Commit
abdf64dc
authored
Dec 17, 2020
by
Maximilian Schanner
Browse files
Broken due to scipy 1.5.4 being unavailable via nix.
parent
cebe452a
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.tests-shell.nix
View file @
abdf64dc
...
...
@@ -2,20 +2,22 @@
#
# SPDX-License-Identifier: CC0-1.0
{
pkgs
?
import
{
pkgs
?
import
(
builtins
.
fetchTarball
{
name
=
"nixpkgs-20.09"
;
url
=
"https://github.com/NixOS/nixpkgs/archive/edb26126d98bc696f4f3e206583faa65d3d6e818.tar.gz"
;
sha256
=
"1cl4ka4kk7kh3bl78g06dhiidazf65q8miyzaxi9930d6gwyzkci"
;
})
{
overlays
=
[
rec
{
unstable
=
import
<
unstable
>
{};
overlays
=
[
(
self
:
super
:
rec
{
python37
=
super
.
python37
.
override
{
packageOverrides
=
self
:
super
:
{
scipy
=
unstable
.
python37Packages
.
scipy
;
matplotlib
=
super
.
matplotlib
.
overrideAttrs
(
oldAttrs
:
rec
{
...
...
@@ -50,5 +52,5 @@
}:
pkgs
.
mkShell
{
buildInputs
=
with
pkgs
.
python37Packages
;
[
ipython
pyfield
pymagglobal
cartopy
matplotlib
numpy
scipy
orthopoly
];
[
ipython
pyfield
pymagglobal
cartopy
matplotlib
numpy
scipy
];
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment