proselint: init at 0.8.0
This commit is contained in:
parent
4ffa5fa182
commit
0904cf034c
20
pkgs/tools/text/proselint/default.nix
Normal file
20
pkgs/tools/text/proselint/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{ stdenv, fetchurl, buildPythonApplication, click, future, six }:
|
||||||
|
|
||||||
|
buildPythonApplication rec {
|
||||||
|
name = "proselint-${version}";
|
||||||
|
version = "0.8.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://pypi/p/proselint/${name}.tar.gz";
|
||||||
|
sha256 = "1g8vx04gmv0agmggz1ml5vydfppqvl8dzjvqm6vqw5rzafa89m08";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ click future six ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A linter for prose";
|
||||||
|
homepage = http://proselint.com;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ alibabzo ];
|
||||||
|
};
|
||||||
|
}
|
@ -18901,6 +18901,8 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
proselint = callPackage ../tools/text/proselint { };
|
||||||
|
|
||||||
pylibconfig2 = buildPythonPackage rec {
|
pylibconfig2 = buildPythonPackage rec {
|
||||||
name = "pylibconfig2-${version}";
|
name = "pylibconfig2-${version}";
|
||||||
version = "0.2.4";
|
version = "0.2.4";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user