about summary refs log tree commit diff
path: root/pkgs/development/python-modules/atom
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-10-19 18:51:44 +0200
committerGitHub <noreply@github.com>2022-10-19 18:51:44 +0200
commit17b8bc63eb2effe7796a7685f88cd649022e9605 (patch)
tree8ea36100602ba204c1e5f6a0457d61c010a380b2 /pkgs/development/python-modules/atom
parent0516d23a627fa8d059f8d44ab7d62b6182b5a549 (diff)
python310Packages.atom: disable on older Python releases
Diffstat (limited to 'pkgs/development/python-modules/atom')
-rw-r--r--pkgs/development/python-modules/atom/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/atom/default.nix b/pkgs/development/python-modules/atom/default.nix
index 7fbfb19baffbb..3b5b212b7ea16 100644
--- a/pkgs/development/python-modules/atom/default.nix
+++ b/pkgs/development/python-modules/atom/default.nix
@@ -5,6 +5,7 @@
 , future
 , cppy
 , pytestCheckHook
+, pythonOlder
 }:
 
 buildPythonPackage rec {
@@ -12,6 +13,8 @@ buildPythonPackage rec {
   version = "0.8.2";
   format = "pyproject";
 
+  disabled = pythonOlder "3.8";
+
   src = fetchFromGitHub {
     owner = "nucleic";
     repo = pname;
@@ -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 ];
   };
 }