linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / python-codon-tables / default.nix
blob4c1ec6a3a20e11378041f163534631ccb424489a
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "python-codon-tables";
8   version = "0.1.10";
10   src = fetchPypi {
11     pname = "python_codon_tables";
12     inherit version;
13     sha256 = "265beac928cbb77c6745bc728471adc7ffef933b794be303d272ecb9ad37d3d4";
14   };
16   # no tests in tarball
17   doCheck = false;
19   pythonImportsCheck = [ "python_codon_tables" ];
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   };