Skip to content

Commit

Permalink
csscompressor: init at 0.9.4 (#24946)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedtd authored and joachifm committed Apr 17, 2017
1 parent a7d2be1 commit f029fc8
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pkgs/development/python-modules/csscompressor.nix
@@ -0,0 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "csscompressor";
version = "0.9.4";
name = "${pname}-${version}";

src = fetchPypi {
inherit pname version;
sha256 = "0e12f125b88379d7b680636d94a3c8fa14bed1de2358f7f9a9e6749e222cff3b";
};

doCheck = false; # No tests

meta = {
description = "A python port of YUI CSS Compressor";
homepage = https://pypi.python.org/pypi/csscompressor;
license = stdenv.lib.licenses.bsd3;
maintainers = [stdenv.lib.maintainers.ahmedtd];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -2524,6 +2524,8 @@ in {
doCheck = false; # lazy packager
};

csscompressor = callPackage ../development/python-modules/csscompressor.nix {};

csvkit = buildPythonPackage rec {
name = "csvkit-${version}";
version = "0.9.1";
Expand Down

0 comments on commit f029fc8

Please sign in to comment.