Files
nixpkgs/pkgs/development/python-modules/jsbeautifier/default.nix
T

23 lines
577 B
Nix
Raw Normal View History

2018-06-23 15:27:58 +02:00
{ lib, fetchPypi, buildPythonApplication, EditorConfig, pytest, six }:
2017-05-21 09:50:14 +02:00
buildPythonApplication rec {
2017-05-27 11:25:35 +02:00
pname = "jsbeautifier";
2017-12-30 12:23:47 +01:00
version = "1.7.5";
2017-05-21 09:50:14 +02:00
2017-05-27 11:25:35 +02:00
propagatedBuildInputs = [ six ];
2017-05-21 09:50:14 +02:00
2017-05-27 11:25:35 +02:00
buildInputs = [ EditorConfig pytest ];
2017-05-21 09:50:14 +02:00
2018-06-23 15:27:58 +02:00
src = fetchPypi {
inherit pname version;
2017-12-30 12:23:47 +01:00
sha256 = "78eb1e5c8535484f0d0b588aca38da3fb5e0e34de2d1ab53c077e71c55757473";
2017-05-27 11:25:35 +02:00
};
2017-05-21 09:50:14 +02:00
2018-06-23 15:27:58 +02:00
meta = with lib; {
2017-05-27 11:25:35 +02:00
homepage = "http://jsbeautifier.org";
description = "JavaScript unobfuscator and beautifier.";
license = licenses.mit;
maintainers = with maintainers; [ apeyroux ];
};
}