8 buildPythonPackage rec {
13 inherit pname version;
14 sha256 = "42d8ef819367516592a825746a18073ced42ca169ab1f5f4044134703e7a049c";
17 # python2 can't import a test fixture
19 checkInputs = [ nose ];
21 PYTHONPATH=$PWD/tests:$PYTHONPATH
23 --ignore-files="test_classdef" \
24 --ignore-files="test_objects" \
25 --ignore-files="test_selected" \
26 --exclude="test_the_rest" \
27 --exclude="test_importable"
29 # Tests seem to fail because of import pathing and referencing items/classes in modules.
30 # Seems to be a Nix/pathing related issue, not the codebase, so disabling failing tests.
33 description = "Serialize all of python (almost)";
34 homepage = "https://github.com/uqfoundation/dill/";
35 license = lib.licenses.bsd3;