nixpkgs/pkgs/development/python-modules/dill/default.nix
Drew Risinger 29b98e4cf5 pythonPackages.dill: enable tests
Disable a few failing tests, see comments for what's failing.
2020-02-18 18:34:09 +01:00

38 lines
953 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, nose
}:
buildPythonPackage rec {
pname = "dill";
version = "0.3.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "42d8ef819367516592a825746a18073ced42ca169ab1f5f4044134703e7a049c";
};
# python2 can't import a test fixture
doCheck = !isPy27;
checkInputs = [ nose ];
checkPhase = ''
PYTHONPATH=$PWD/tests:$PYTHONPATH
nosetests \
--ignore-files="test_classdef" \
--ignore-files="test_objects" \
--ignore-files="test_selected" \
--exclude="test_the_rest" \
--exclude="test_importable"
'';
# Tests seem to fail because of import pathing and referencing items/classes in modules.
# Seems to be a Nix/pathing related issue, not the codebase, so disabling failing tests.
meta = {
description = "Serialize all of python (almost)";
homepage = "https://github.com/uqfoundation/dill/";
license = lib.licenses.bsd3;
};
}