1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 version = "0.6.0"; 8 pname = "BespON"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "2f2bda67fea8ee95c8aa7e885835ab88bdbfa392a94077ce1c9d29017420ce7a"; 13 }; 14 15 propagatedBuildInputs = [ ]; 16 # upstream doesn't contain tests 17 doCheck = false; 18 19 pythonImportsCheck = [ "bespon" ]; 20 meta = with lib; { 21 description = "Encodes and decodes data in the BespON format."; 22 homepage = "https://github.com/gpoore/bespon_py"; 23 license = licenses.bsd3; 24 maintainers = with maintainers; [ synthetica ]; 25 }; 26 27}