mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
csscompressor: init at 0.9.4 (#24946)
This commit is contained in:
parent
a7d2be1471
commit
f029fc8cdc
20
pkgs/development/python-modules/csscompressor.nix
Normal file
20
pkgs/development/python-modules/csscompressor.nix
Normal file
@ -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];
|
||||
};
|
||||
}
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user