summary refs log tree commit diff
path: root/pkgs/development/python-modules/pep8/default.nix
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-25 21:16:08 -0400
committerFrederik Rietdijk <fridh@fridh.nl>2018-10-27 09:07:18 +0200
commit9c36906e1a7dc7e8a4b517770bf1f649ff306b51 (patch)
treec8d7667e272722e923a497d38de99fc06c9660a3 /pkgs/development/python-modules/pep8/default.nix
parent7dc8b993d6e8085660c07bc00cab83e023e1bbec (diff)
downloadnixpkgs-9c36906e1a7dc7e8a4b517770bf1f649ff306b51.tar
nixpkgs-9c36906e1a7dc7e8a4b517770bf1f649ff306b51.tar.gz
nixpkgs-9c36906e1a7dc7e8a4b517770bf1f649ff306b51.tar.bz2
nixpkgs-9c36906e1a7dc7e8a4b517770bf1f649ff306b51.tar.lz
nixpkgs-9c36906e1a7dc7e8a4b517770bf1f649ff306b51.tar.xz
nixpkgs-9c36906e1a7dc7e8a4b517770bf1f649ff306b51.tar.zst
nixpkgs-9c36906e1a7dc7e8a4b517770bf1f649ff306b51.zip
pythonPackages.pep8: refactor move to python-modules
Diffstat (limited to 'pkgs/development/python-modules/pep8/default.nix')
-rw-r--r--pkgs/development/python-modules/pep8/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pep8/default.nix b/pkgs/development/python-modules/pep8/default.nix
new file mode 100644
index 00000000000..9e31063b461
--- /dev/null
+++ b/pkgs/development/python-modules/pep8/default.nix
@@ -0,0 +1,26 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, pythonAtLeast
+}:
+
+buildPythonPackage rec {
+  pname = "pep8";
+  version = "1.7.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "a113d5f5ad7a7abacef9df5ec3f2af23a20a28005921577b15dd584d099d5900";
+  };
+
+  # FAIL: test_checkers_testsuite (testsuite.test_all.Pep8TestCase)
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    homepage = "http://pep8.readthedocs.org/";
+    description = "Python style guide checker";
+    license = licenses.mit;
+    maintainers = with maintainers; [ garbas ];
+  };
+
+}