nixpkgs/pkgs/development/python-modules/rjsmin/default.nix
R. RyanTM 8cd70d5b45 python37Packages.rjsmin: 1.0.12 -> 1.1.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-rjsmin/versions

(cherry picked from commit 438c0b5a11b869e8617427ee6d32ddb13a6a9270)
2019-04-07 13:46:31 +02:00

21 lines
523 B
Nix

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "rjsmin";
version = "1.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "0cmc72rlkvzz8fl89bc83czkx0pcvhzj7yn7m29r8pgnf5fcfpdi";
};
# The package does not ship tests, and the setup machinary confuses
# tests auto-discovery
doCheck = false;
meta = with stdenv.lib; {
homepage = http://opensource.perlig.de/rjsmin/;
license = licenses.asl20;
description = "Javascript minifier written in python";
};
}