about summary refs log tree commit diff
path: root/pkgs/development/python-modules/acoustics
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-02-20 21:52:16 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2019-02-20 21:52:31 +0100
commit2a81eceeba6d9b0499c0a9dc569921765321cdd0 (patch)
tree0748953fa45c42b23b573ff7cb287a1527690400 /pkgs/development/python-modules/acoustics
parentbba6de611a6b22062546c1d98b990028c957add9 (diff)
downloadnixlib-2a81eceeba6d9b0499c0a9dc569921765321cdd0.tar
nixlib-2a81eceeba6d9b0499c0a9dc569921765321cdd0.tar.gz
nixlib-2a81eceeba6d9b0499c0a9dc569921765321cdd0.tar.bz2
nixlib-2a81eceeba6d9b0499c0a9dc569921765321cdd0.tar.lz
nixlib-2a81eceeba6d9b0499c0a9dc569921765321cdd0.tar.xz
nixlib-2a81eceeba6d9b0499c0a9dc569921765321cdd0.tar.zst
nixlib-2a81eceeba6d9b0499c0a9dc569921765321cdd0.zip
python.pkgs.acoustics: 0.2.0.post1 -> 0.2.0.post2
Diffstat (limited to 'pkgs/development/python-modules/acoustics')
-rw-r--r--pkgs/development/python-modules/acoustics/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/acoustics/default.nix b/pkgs/development/python-modules/acoustics/default.nix
index 7b26d5c07a5a..7f54af28bd88 100644
--- a/pkgs/development/python-modules/acoustics/default.nix
+++ b/pkgs/development/python-modules/acoustics/default.nix
@@ -3,21 +3,20 @@
 
 buildPythonPackage rec {
   pname = "acoustics";
-  version = "0.2.0.post1";
+  version = "0.2.0.post2";
 
   checkInputs = [ pytest ];
   propagatedBuildInputs = [ numpy scipy matplotlib pandas tabulate ];
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "738218db41ff1b1f932eabb700e400d84141af6f29392aab5f7be1b19758f806";
+    sha256 = "c0ca4d7ca67fd867c3a7e34232a98a1fc210ee7ff845f3d2eed445a01737b2ff";
   };
 
-  # Tests look in wrong place for test data
-  doCheck = false;
-
   checkPhase = ''
-    py.test tests
+    pushd tests
+    py.test ./.
+    popd
   '';
 
   disabled = pythonOlder "3.6";