tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.acoustics: fix build
sveitser
3 years ago
2abf4e59
cc53a6e0
+6
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
acoustics
default.nix
+6
-2
pkgs/development/python-modules/acoustics/default.nix
···
1
1
{ lib
2
2
, buildPythonPackage
3
3
, fetchPypi
4
4
+
, flit-core
4
5
, matplotlib
5
6
, numpy
6
7
, pandas
···
21
20
inherit pname version;
22
21
sha256 = "sha256-0CvMhCUc+i7dPiHH+IXdlj+OjFh/l1wvnU4dmxQrzFI=";
23
22
};
23
23
+
format = "pyproject";
24
24
+
25
25
+
nativeBuildInputs = [ flit-core ];
24
26
25
27
propagatedBuildInputs = [
26
28
matplotlib
···
48
44
];
49
45
50
46
disabledTestPaths = [
51
51
-
# All tests fail with TypeError
52
52
-
"tests/test_aio.py"
47
47
+
# ValueError: Unknown window type: "hanning"
48
48
+
"tests/standards/test_iso_1996_2_2007.py"
53
49
];
54
50
55
51
pythonImportsCheck = [ "acoustics" ];