about summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorLangston Barrett <langston.barrett@gmail.com>2017-07-13 00:32:27 +0000
committerLangston Barrett <langston.barrett@gmail.com>2017-07-13 00:32:27 +0000
commit7b27f7c28fda894b7a625790889f6caca048b9f3 (patch)
treeb1647ad75b30459358564716c7a36ce66cacaf93 /pkgs/top-level
parenteb28340bacf12fa795802c7a8a9c923271c70d12 (diff)
downloadnixlib-7b27f7c28fda894b7a625790889f6caca048b9f3.tar
nixlib-7b27f7c28fda894b7a625790889f6caca048b9f3.tar.gz
nixlib-7b27f7c28fda894b7a625790889f6caca048b9f3.tar.bz2
nixlib-7b27f7c28fda894b7a625790889f6caca048b9f3.tar.lz
nixlib-7b27f7c28fda894b7a625790889f6caca048b9f3.tar.xz
nixlib-7b27f7c28fda894b7a625790889f6caca048b9f3.tar.zst
nixlib-7b27f7c28fda894b7a625790889f6caca048b9f3.zip
pycodestyle: 2.0.0 -> 2.3.1
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/python-packages.nix17
1 files changed, 1 insertions, 16 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 6f3adb9d9d50..43debbdfbb13 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -10671,22 +10671,7 @@ in {
     };
   };
 
-  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 ];
-    };
-  };
+  pycodestyle = callPackage ../development/python-modules/pycodestyle { };
 
   filebytes = buildPythonPackage rec {
     name = "filebytes-0.9.12";