about summary refs log tree commit diff
path: root/pkgs/development/python-modules/memestra/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/memestra/default.nix')
-rw-r--r--pkgs/development/python-modules/memestra/default.nix28
1 files changed, 12 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/memestra/default.nix b/pkgs/development/python-modules/memestra/default.nix
index db7d4e254a738..d9add2a93460a 100644
--- a/pkgs/development/python-modules/memestra/default.nix
+++ b/pkgs/development/python-modules/memestra/default.nix
@@ -1,13 +1,13 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, beniget
-, frilouz
-, gast
-, nbconvert
-, nbformat
-, pythonOlder
-, pyyaml
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  beniget,
+  frilouz,
+  gast,
+  nbconvert,
+  nbformat,
+  pyyaml,
 }:
 
 buildPythonPackage rec {
@@ -15,8 +15,6 @@ buildPythonPackage rec {
   version = "0.2.1";
   format = "setuptools";
 
-  disabled = pythonOlder "3.4";
-
   src = fetchPypi {
     inherit pname version;
     hash = "sha256-6shwf9BoDfZMy0itP8esNP4ov6fw6LJpO3Y5ZahwDZw=";
@@ -34,12 +32,10 @@ buildPythonPackage rec {
   # Tests are not detected and so the checkPhase fails
   doCheck = false;
 
-  pythonImportsCheck = [
-    "memestra"
-  ];
+  pythonImportsCheck = [ "memestra" ];
 
   meta = with lib; {
-    description = "A linter that tracks reference to deprecated functions.";
+    description = "Linter that tracks reference to deprecated functions";
     homepage = "https://github.com/QuantStack/memestra";
     license = licenses.bsd3;
     maintainers = with maintainers; [ GaetanLepage ];