linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / text / proselint / default.nix
blob143c43f660d1bfe13f195920dc1e52c7a8196736
1 { lib, fetchurl, buildPythonApplication, click, future, six }:
3 buildPythonApplication rec {
4   pname = "proselint";
5   version = "0.10.2";
7   doCheck = false; # fails to pass because it tries to run in home directory
9   src = fetchurl {
10     url = "mirror://pypi/p/proselint/${pname}-${version}.tar.gz";
11     sha256 = "017risn0j1bjy9ygzfgphjnyjl4gk7wbrr4qv1vvrlan60wyp1rs";
12   };
14   propagatedBuildInputs = [ click future six ];
16   meta = with lib; {
17     description = "A linter for prose";
18     homepage = "http://proselint.com";
19     license = licenses.bsd3;
20     maintainers = with maintainers; [ alibabzo ];
21   };