about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMartin Bornhold <martin@rhodecode.com>2016-09-30 13:26:23 +0200
committerMartin Bornhold <martin@rhodecode.com>2016-09-30 14:12:29 +0200
commitd3aefc6576b75dae65cc889c9c4561bec5c8cbe8 (patch)
tree38f5f5730617e02d7d435570c4e181ece9b7fcc2 /pkgs
parent8b09ba32d3d42392480c9691f0964dfc934de730 (diff)
downloadnixlib-d3aefc6576b75dae65cc889c9c4561bec5c8cbe8.tar
nixlib-d3aefc6576b75dae65cc889c9c4561bec5c8cbe8.tar.gz
nixlib-d3aefc6576b75dae65cc889c9c4561bec5c8cbe8.tar.bz2
nixlib-d3aefc6576b75dae65cc889c9c4561bec5c8cbe8.tar.lz
nixlib-d3aefc6576b75dae65cc889c9c4561bec5c8cbe8.tar.xz
nixlib-d3aefc6576b75dae65cc889c9c4561bec5c8cbe8.tar.zst
nixlib-d3aefc6576b75dae65cc889c9c4561bec5c8cbe8.zip
pycodestyle: init at 2.0.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/python-packages.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 17f8704c7994..aaafc47aa689 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -10489,6 +10489,23 @@ in modules // {
     };
   };
 
+  pycodestyle = buildPythonPackage rec {
+    name = "pycodestyle-${version}";
+    version = "2.0.0";
+
+    src = pkgs.fetchurl {
+      url = "mirror://pypi/p/pycodestyle/${name}.tar.gz";
+      sha256 = "1rz2v8506mdjdyxcnv9ygiw6v0d4dqx8z5sjyjm0w2v32h5l5w1p";
+    };
+
+    meta = {
+      description = "Python style guide checker (formerly called pep8)";
+      homepage = https://pycodestyle.readthedocs.io;
+      license = licenses.mit;
+      maintainers = with maintainers; [ garbas ];
+    };
+  };
+
   flake8 = buildPythonPackage rec {
     name = "flake8-${version}";
     version = "2.5.4";