python310Packages.rjsmin: clean-up

This commit is contained in:
Fabian Affolter 2023-10-06 23:04:37 +02:00 committed by GitHub
parent 56189354ae
commit 5d060d6a30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,8 @@
{ lib, buildPythonPackage, fetchPypi }:
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "rjsmin";
version = "1.2.2";
@ -13,8 +17,9 @@ buildPythonPackage rec {
doCheck = false;
meta = with lib; {
description = "Module to minify Javascript";
homepage = "http://opensource.perlig.de/rjsmin/";
license = licenses.asl20;
description = "Javascript minifier written in python";
maintainers = with maintainers; [ ];
};
}