2019-06-16 20:59:06 +01:00
|
|
|
{ lib, fetchPypi, buildPythonApplication, EditorConfig, pytest, six }:
|
2017-05-21 08:50:14 +01:00
|
|
|
|
|
|
|
buildPythonApplication rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "jsbeautifier";
|
2019-05-03 12:48:59 +01:00
|
|
|
version = "1.10.0";
|
2017-05-21 08:50:14 +01:00
|
|
|
|
2019-04-05 21:02:01 +01:00
|
|
|
propagatedBuildInputs = [ six EditorConfig ];
|
|
|
|
checkInputs = [ pytest ];
|
2017-05-21 08:50:14 +01:00
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-05-03 12:48:59 +01:00
|
|
|
sha256 = "1e389572ade865173605471e98df4002f4b6e5235121c13f1e4497a3eac69108";
|
2017-05-27 10:25:35 +01:00
|
|
|
};
|
2017-05-21 08:50:14 +01:00
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
meta = with lib; {
|
2017-05-27 10:25:35 +01:00
|
|
|
homepage = "http://jsbeautifier.org";
|
|
|
|
description = "JavaScript unobfuscator and beautifier.";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ apeyroux ];
|
|
|
|
};
|
|
|
|
}
|