0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 14:10:33 +03:00
nixpkgs/pkgs/development/python-modules/csscompressor/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
502 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi }:
2017-04-17 03:49:43 -05:00
buildPythonPackage rec {
pname = "csscompressor";
2017-12-30 12:21:58 +01:00
version = "0.9.5";
format = "setuptools";
2017-04-17 03:49:43 -05:00
src = fetchPypi {
inherit pname version;
2017-12-30 12:21:58 +01:00
sha256 = "afa22badbcf3120a4f392e4d22f9fff485c044a1feda4a950ecc5eba9dd31a05";
2017-04-17 03:49:43 -05:00
};
doCheck = false; # No tests
meta = with lib; {
2017-04-17 03:49:43 -05:00
description = "A python port of YUI CSS Compressor";
homepage = "https://pypi.python.org/pypi/csscompressor";
license = licenses.bsd3;
2020-05-26 19:56:24 +02:00
maintainers = [];
2017-04-17 03:49:43 -05:00
};
}