nixpkgs/pkgs/tools/text/proselint/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
624 B
Nix
Raw Normal View History

{ lib, fetchurl, buildPythonApplication, click, future, six }:
2017-03-02 18:53:22 +00:00
buildPythonApplication rec {
pname = "proselint";
2021-11-14 06:56:50 +00:00
version = "0.13.0";
2017-03-02 18:53:22 +00:00
doCheck = false; # fails to pass because it tries to run in home directory
2017-03-02 18:53:22 +00:00
src = fetchurl {
url = "mirror://pypi/p/proselint/${pname}-${version}.tar.gz";
2021-11-14 06:56:50 +00:00
sha256 = "7dd2b63cc2aa390877c4144fcd3c80706817e860b017f04882fbcd2ab0852a58";
2017-03-02 18:53:22 +00:00
};
propagatedBuildInputs = [ click future six ];
meta = with lib; {
2017-03-02 18:53:22 +00:00
description = "A linter for prose";
homepage = "http://proselint.com";
2017-03-02 18:53:22 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ alibabzo ];
};
}