depot/third_party/nixpkgs/pkgs/tools/text/proselint/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

22 lines
622 B
Nix

{ stdenv, fetchurl, buildPythonApplication, click, future, six }:
buildPythonApplication rec {
pname = "proselint";
version = "0.10.2";
doCheck = false; # fails to pass because it tries to run in home directory
src = fetchurl {
url = "mirror://pypi/p/proselint/${pname}-${version}.tar.gz";
sha256 = "017risn0j1bjy9ygzfgphjnyjl4gk7wbrr4qv1vvrlan60wyp1rs";
};
propagatedBuildInputs = [ click future six ];
meta = with stdenv.lib; {
description = "A linter for prose";
homepage = "http://proselint.com";
license = licenses.bsd3;
maintainers = with maintainers; [ alibabzo ];
};
}