depot/third_party/nixpkgs/pkgs/development/python-modules/freesasa/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

47 lines
943 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
cython,
freesasa,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "freesasa";
version = "2.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "freesasa";
repo = "freesasa-python";
rev = "refs/tags/v${version}";
hash = "sha256-/7ymItwXOemY0+IL0k6rWnJI8fAwTFjNXzTV+uf9x9A=";
};
postPatch = ''
ln -s ${freesasa.src}/* lib/
'';
build-system = [
cython
setuptools
];
env.USE_CYTHON = true;
pythonImportsCheck = [ "freesasa" ];
nativeCheckInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "test.py" ];
meta = {
description = "FreeSASA Python Module";
homepage = "https://github.com/freesasa/freesasa-python";
changelog = "https://github.com/freesasa/freesasa-python/blob/${src.rev}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ natsukium ];
};
}