Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / jsmin / default.nix
bloba36c350264bebf99a8835db47f8bbfae6c941e0f
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "jsmin";
10   version = "3.0.1";
11   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "c0959a121ef94542e807a674142606f7e90214a2b3d1eb17300244bbb5cc2bfc";
18   };
20   nativeCheckInputs = [
21     pytestCheckHook
22   ];
24   pytestFlagsArray = [
25     "jsmin/test.py"
26   ];
28   pythonImportsCheck = [
29     "jsmin"
30   ];
32   meta = with lib; {
33     description = "JavaScript minifier";
34     homepage = "https://github.com/tikitu/jsmin/";
35     license = licenses.mit;
36     maintainers = with maintainers; [ ];
37   };