1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "python-codon-tables"; 8 version = "0.1.12"; 9 10 src = fetchPypi { 11 pname = "python_codon_tables"; 12 inherit version; 13 sha256 = "sha256-pzPoR55nU8ObPv1iIE52qpqD5xGdYLm1uG3nCD6I46Y="; 14 }; 15 16 # no tests in tarball 17 doCheck = false; 18 19 pythonImportsCheck = [ "python_codon_tables" ]; 20 21 meta = with lib; { 22 homepage = "https://github.com/Edinburgh-Genome-Foundry/codon-usage-tables"; 23 description = "Codon Usage Tables for Python, from kazusa.or.jp"; 24 license = licenses.mit; 25 maintainers = with maintainers; [ prusnak ]; 26 }; 27}