3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/text/proselint/default.nix

23 lines
612 B
Nix
Raw Normal View History

{ lib, fetchurl, buildPythonApplication, click, future, six }:
2017-03-02 18:53:22 +00:00
buildPythonApplication rec {
pname = "proselint";
version = "0.10.2";
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";
sha256 = "017risn0j1bjy9ygzfgphjnyjl4gk7wbrr4qv1vvrlan60wyp1rs";
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 ];
};
}