summary refs log blame commit diff
path: root/pkgs/tools/text/proselint/default.nix
blob: 143c43f660d1bfe13f195920dc1e52c7a8196736 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                              

                            
                      
                     
 

                                                                            
                  
                                                                 
                                                                    



                                               
                    
                                       
                                      



                                                 
{ lib, fetchurl, buildPythonApplication, click, future, six }:

buildPythonApplication rec {
  pname = "proselint";
  version = "0.10.2";

  doCheck = false; # fails to pass because it tries to run in home directory

  src = fetchurl {
    url = "mirror://pypi/p/proselint/${pname}-${version}.tar.gz";
    sha256 = "017risn0j1bjy9ygzfgphjnyjl4gk7wbrr4qv1vvrlan60wyp1rs";
  };

  propagatedBuildInputs = [ click future six ];

  meta = with lib; {
    description = "A linter for prose";
    homepage = "http://proselint.com";
    license = licenses.bsd3;
    maintainers = with maintainers; [ alibabzo ];
  };
}