Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, fetchurl, buildPythonApplication, click, future, six }: 2 3buildPythonApplication rec { 4 pname = "proselint"; 5 version = "0.13.0"; 6 7 doCheck = false; # fails to pass because it tries to run in home directory 8 9 src = fetchurl { 10 url = "mirror://pypi/p/proselint/${pname}-${version}.tar.gz"; 11 sha256 = "7dd2b63cc2aa390877c4144fcd3c80706817e860b017f04882fbcd2ab0852a58"; 12 }; 13 14 propagatedBuildInputs = [ click future six ]; 15 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 }; 22}