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