mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
22bbac03b5
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
20 lines
460 B
Nix
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 ];
|
|
};
|
|
}
|