mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
20 lines
510 B
Nix
20 lines
510 B
Nix
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
buildPythonPackage rec {
|
|
pname = "csscompressor";
|
|
version = "0.9.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "afa22badbcf3120a4f392e4d22f9fff485c044a1feda4a950ecc5eba9dd31a05";
|
|
};
|
|
|
|
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];
|
|
};
|
|
}
|