Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / wavefile / default.nix
blob4a8272e2f66815530521e0891db34414a206c58c
1 { lib
2 , stdenv
3 , buildPythonPackage
4 , fetchFromGitHub
5 , setuptools
6 , pyaudio
7 , numpy
8 , libsndfile
9 , substituteAll
12 buildPythonPackage rec {
13   pname = "wavefile";
14   version = "1.6.2";
15   pyproject = true;
17   src = fetchFromGitHub {
18     owner = "vokimon";
19     repo = "python-wavefile";
20     rev = "refs/tags/python-wavefile-${version}";
21     hash = "sha256-TLSWhLARY+3sHkl2p3d3LDGzLu6DggjTJWFpyrwRXSI=";
22   };
24   nativeBuildInputs = [
25     setuptools
26   ];
28   buildInputs = [
29     pyaudio
30     libsndfile
31   ];
33   propagatedBuildInputs = [
34     numpy
35   ];
37   nativeCheckInputs = [
38     pyaudio
39     numpy
40     libsndfile
41   ];
43   patches = [
44     # Fix check error
45     # OSError: libsndfile.so.1: cannot open shared object file: No such file or directory
46     (substituteAll {
47       src = ./libsndfile.py.patch;
48       libsndfile = "${lib.getLib libsndfile}/lib/libsndfile${stdenv.hostPlatform.extensions.sharedLibrary}";
49     })
50   ];
52   doCheck = false; # all test files (test/wavefileTest.py) are failing
54   pythonImportsCheck = [
55     "wavefile"
56   ];
58   meta = with lib; {
59     description = "Pythonic libsndfile wrapper to read and write audio files";
60     homepage = "https://github.com/vokimon/python-wavefile";
61     changelog = "https://github.com/vokimon/python-wavefile#version-history";
62     maintainers = with maintainers; [ yuu ];
63     license = licenses.gpl3Plus;
64   };