13 buildPythonPackage rec {
18 src = fetchFromGitHub {
21 rev = "refs/tags/v${version}";
22 hash = "sha256-dUeGjDDz9VA1NrFLGKy0ebaa+MU4c1tHi5YYkAspLRk=";
25 pythonRelaxDeps = [ "looseversion" ];
27 build-system = [ setuptools ];
36 nativeCheckInputs = [ pytestCheckHook ];
39 # require network access
40 "test_mmcif_pdb_conversion"
47 pythonImportsCheck = [ "biopandas" ];
50 description = "Working with molecular structures in pandas DataFrames";
51 homepage = "https://github.com/BioPandas/biopandas";
52 changelog = "https://github.com/BioPandas/biopandas/releases/tag/${lib.removePrefix "refs/tags/" src.rev}";
53 license = lib.licenses.bsd3;
54 maintainers = with lib.maintainers; [ natsukium ];