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