1{ lib 2, buildPythonPackage 3, fetchPypi 4, setuptoolsDarcs 5, pyutil 6}: 7 8buildPythonPackage rec { 9 pname = "zbase32"; 10 version = "1.1.5"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "9b25c34ba586cbbad4517af516e723599a6f38fc560f4797855a5f3051e6422f"; 15 }; 16 17 # Tests require `pyutil' so disable them to avoid circular references. 18 doCheck = false; 19 20 propagatedBuildInputs = [ setuptoolsDarcs pyutil ]; 21 22 meta = with lib; { 23 description = "zbase32, a base32 encoder/decoder"; 24 homepage = "https://pypi.python.org/pypi/zbase32"; 25 license = licenses.bsd0; 26 }; 27 28}