10 buildPythonPackage rec {
15 src = fetchFromGitHub {
19 hash = "sha256-tz99C+dz5xJhunoC45bl0NdSdV9NXWya9ti48Z/KaHY=";
22 build-system = [ setuptools ];
24 nativeCheckInputs = [ pytestCheckHook ];
29 # uses ctypes to find native library
30 "--deselect=test_six.py::test_move_items"
35 pythonImportsCheck = [ "six" ];
38 changelog = "https://github.com/benjaminp/six/blob/${version}/CHANGES";
39 description = "Python 2 and 3 compatibility library";
40 homepage = "https://github.com/benjaminp/six";
41 license = lib.licenses.mit;
42 maintainers = with lib.maintainers; [ dotlambda ];