nixpkgs/pkgs/tools/text/proselint/default.nix
R. RyanTM 69dd5d5314 proselint: 0.10.0 -> 0.10.2 (#45170)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/proselint/versions.
2018-08-21 14:34:05 +02:00

23 lines
618 B
Nix

{ stdenv, fetchurl, buildPythonApplication, click, future, six }:
buildPythonApplication rec {
name = "proselint-${version}";
version = "0.10.2";
doCheck = false; # fails to pass because it tries to run in home directory
src = fetchurl {
url = "mirror://pypi/p/proselint/${name}.tar.gz";
sha256 = "017risn0j1bjy9ygzfgphjnyjl4gk7wbrr4qv1vvrlan60wyp1rs";
};
propagatedBuildInputs = [ click future six ];
meta = with stdenv.lib; {
description = "A linter for prose";
homepage = http://proselint.com;
license = licenses.bsd3;
maintainers = with maintainers; [ alibabzo ];
};
}