From 150a49e2df87f5020dfb538afe8178a8cc895495 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sat, 24 Mar 2018 10:54:41 +0000 Subject: gnu: Add python-autoflake. --- gnu/packages/python.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 0c13e39f5f..d0eb3a2ca0 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -15253,3 +15253,24 @@ class in a @acronym{DRY, Don't Repeat Yourself} way.") (description "Linting and Fixing Code for All Languages") (license #f))) + +(define-public python-autoflake + (package + (name "python-autoflake") + (version "1.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "autoflake" version)) + (sha256 + (base32 + "0cfidqg3msagg92l1hbc644nih0n615c5p9ab1s4yr82g956hkd7")))) + (build-system python-build-system) + (propagated-inputs + `(("python-pyflakes" ,python-pyflakes))) + (home-page "https://github.com/myint/autoflake") + (synopsis + "Removes unused imports and unused variables") + (description + "Removes unused imports and unused variables") + (license #f))) -- cgit v1.2.3