about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/datashape/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/datashape/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/datashape/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/datashape/default.nix b/nixpkgs/pkgs/development/python-modules/datashape/default.nix
index 63191aa224e3..bb2e65125b7d 100644
--- a/nixpkgs/pkgs/development/python-modules/datashape/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/datashape/default.nix
@@ -34,7 +34,8 @@ in buildPythonPackage rec {
   # Disable several tests
   # https://github.com/blaze/datashape/issues/232
   checkPhase = ''
-    py.test -k "not test_validate and not test_nested_iteratables and not test_validate_dicts and not test_tuples_can_be_records_too" datashape/tests
+    pytest --ignore datashape/tests/test_str.py \
+           --ignore datashape/tests/test_user.py
   '';
 
   meta = {
@@ -42,7 +43,5 @@ in buildPythonPackage rec {
     description = "A data description language";
     license = lib.licenses.bsd2;
     maintainers = with lib.maintainers; [ fridh ];
-    # Package is no longer maintained upstream, and more and more tests are failing.
-    broken = true;
   };
-}
\ No newline at end of file
+}