2017-03-02 19:53:22 +01:00
|
|
|
{ stdenv, fetchurl, buildPythonApplication, click, future, six }:
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "proselint";
|
2018-08-21 14:34:05 +02:00
|
|
|
version = "0.10.2";
|
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";
|
2018-08-21 14:34:05 +02:00
|
|
|
sha256 = "017risn0j1bjy9ygzfgphjnyjl4gk7wbrr4qv1vvrlan60wyp1rs";
|
2017-03-02 19:53:22 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ click future six ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A linter for prose";
|
|
|
|
homepage = http://proselint.com;
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ alibabzo ];
|
|
|
|
};
|
|
|
|
}
|