depot/third_party/nixpkgs/pkgs/development/python-modules/atom/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

45 lines
894 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools-scm,
future,
cppy,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "atom";
version = "0.10.4";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "nucleic";
repo = "atom";
rev = "refs/tags/${version}";
hash = "sha256-HoUKU6z+6PPBUsvI4earZG9UXN0PrugAxu/F7WUfUe8=";
};
nativeBuildInputs = [ setuptools-scm ];
buildInputs = [ cppy ];
preCheck = ''
rm -rf atom
'';
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "atom.api" ];
meta = with lib; {
description = "Memory efficient Python objects";
homepage = "https://github.com/nucleic/atom";
changelog = "https://github.com/nucleic/atom/releases/tag/${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ bhipple ];
};
}