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-09-13 01:36:52 +02:00
|
|
|
version = "0.12.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-09-13 01:36:52 +02:00
|
|
|
sha256 = "2a98d9c14382d94ed9122a6c0b0657a814cd5c892c77d9477309fc99f86592e6";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|