summary refs log blame commit diff
path: root/pkgs/development/python-modules/jsbeautifier/default.nix
blob: a0818e1e571f669b1d5f278325278ebf76ef5abe (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                      

                            
                         
                     
 
                                               
                           
 

                          
                                                                                
    
 
                    





                                                            
{ lib, fetchPypi, buildPythonApplication, editorconfig, pytest, six }:

buildPythonApplication rec {
  pname = "jsbeautifier";
  version = "1.14.0";

  propagatedBuildInputs = [ six editorconfig ];
  checkInputs = [ pytest ];

  src = fetchPypi {
    inherit pname version;
    sha256 = "84fdb008d8af89619269a6aca702288b48f837a99427a0f529aa57ecfb36ee3c";
  };

  meta = with lib; {
    homepage    = "http://jsbeautifier.org";
    description = "JavaScript unobfuscator and beautifier.";
    license     = licenses.mit;
    maintainers = with maintainers; [ apeyroux ];
  };
}