about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/codespell/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/codespell/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/codespell/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/codespell/default.nix b/nixpkgs/pkgs/development/python-modules/codespell/default.nix
new file mode 100644
index 000000000000..dfd0be09fab4
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/codespell/default.nix
@@ -0,0 +1,26 @@
+{ lib, buildPythonApplication, fetchPypi, pytest, chardet }:
+buildPythonApplication rec {
+  pname = "codespell";
+  version = "1.15.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0c211rzfgmwls8ab8fj21xp9bhxk6ys3xw8w7chp4arjlifc26wg";
+  };
+
+  checkInputs = [ pytest chardet ];
+  checkPhase = ''
+    # We don't want to be affected by the presence of these
+    rm -r codespell_lib setup.cfg
+    # test_command assumes too much about the execution environment
+    pytest --pyargs codespell_lib.tests -k "not test_command"
+  '';
+
+  meta = {
+    description = "Fix common misspellings in source code";
+    homepage = "https://github.com/codespell-project/codespell";
+    license = with lib.licenses; [ gpl2 cc-by-sa-30 ];
+    maintainers = with lib.maintainers; [ johnazoidberg ];
+    platforms = lib.platforms.all;
+  };
+}