Skip to content

Commit

Permalink
python310Packages.atom: disable on older Python releases
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed Oct 19, 2022
1 parent 0516d23 commit 17b8bc6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkgs/development/python-modules/atom/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@
, future
, cppy
, pytestCheckHook
, pythonOlder
}:

buildPythonPackage rec {
pname = "atom";
version = "0.8.2";
format = "pyproject";

disabled = pythonOlder "3.8";

src = fetchFromGitHub {
owner = "nucleic";
repo = pname;
Expand Down Expand Up @@ -43,8 +46,8 @@ buildPythonPackage rec {

meta = with lib; {
description = "Memory efficient Python objects";
maintainers = [ maintainers.bhipple ];
homepage = "https://github.com/nucleic/atom";
license = licenses.bsd3;
maintainers = with maintainers; [ bhipple ];
};
}

0 comments on commit 17b8bc6

Please sign in to comment.