8 buildPythonPackage rec {
12 format = "setuptools";
15 inherit pname version;
16 sha256 = "1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926";
23 pytestFlagsArray = if isPyPy then [
24 # uses ctypes to find native library
25 "--deselect=test_six.py::test_move_items"
28 pythonImportsCheck = [ "six" ];
31 changelog = "https://github.com/benjaminp/six/blob/${version}/CHANGES";
32 description = "Python 2 and 3 compatibility library";
33 homepage = "https://github.com/benjaminp/six";
34 license = lib.licenses.mit;
35 maintainers = with lib.maintainers; [ dotlambda ];