nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.acoustics: fix build

sveitser 2abf4e59 cc53a6e0

+6 -2
+6 -2
pkgs/development/python-modules/acoustics/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 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 + format = "pyproject"; 24 + 25 + nativeBuildInputs = [ flit-core ]; 24 26 25 27 propagatedBuildInputs = [ 26 28 matplotlib ··· 48 44 ]; 49 45 50 46 disabledTestPaths = [ 51 - # All tests fail with TypeError 52 - "tests/test_aio.py" 47 + # ValueError: Unknown window type: "hanning" 48 + "tests/standards/test_iso_1996_2_2007.py" 53 49 ]; 54 50 55 51 pythonImportsCheck = [ "acoustics" ];