nixpkgs/pkgs/development/python-modules/eradicate/default.nix
R. RyanTM 22bbac03b5 python37Packages.eradicate: 0.2.1 -> 1.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-eradicate/versions
2019-01-27 08:43:06 -08:00

20 lines
460 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "eradicate";
version = "1.0";
src = fetchPypi {
inherit pname version;
sha256 = "06nhs8wml5f5k96gbq7jl417bmsqnxy8aykpzbzrvm3gmqmaizag";
};
meta = with lib; {
description = "eradicate removes commented-out code from Python files.";
homepage = https://github.com/myint/eradicate;
license = [ licenses.mit ];
maintainers = [ maintainers.mmlb ];
};
}