summary refs log tree commit diff
path: root/pkgs/development/python-modules/cssmin
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2019-08-30 14:23:02 +0200
committerPeter Simons <simons@cryp.to>2019-08-30 14:25:13 +0200
commit131910992beecf518df8d2420750978d343d2e9c (patch)
tree40b1929dff24bb717433895f3a6a6db6e9290bde /pkgs/development/python-modules/cssmin
parent9c46c35bbb78f2a2d7766908fa0904e071547353 (diff)
downloadnixpkgs-131910992beecf518df8d2420750978d343d2e9c.tar
nixpkgs-131910992beecf518df8d2420750978d343d2e9c.tar.gz
nixpkgs-131910992beecf518df8d2420750978d343d2e9c.tar.bz2
nixpkgs-131910992beecf518df8d2420750978d343d2e9c.tar.lz
nixpkgs-131910992beecf518df8d2420750978d343d2e9c.tar.xz
nixpkgs-131910992beecf518df8d2420750978d343d2e9c.tar.zst
nixpkgs-131910992beecf518df8d2420750978d343d2e9c.zip
python-HyperKitty: initial version 1.2.2
Package the mail archiver for GNU Mailman. I liberally borrowed code
from @globin's repository [1].

[1] https://github.com/mayflower/nixexprs/tree/master/pkgs/python
Diffstat (limited to 'pkgs/development/python-modules/cssmin')
-rw-r--r--pkgs/development/python-modules/cssmin/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/cssmin/default.nix b/pkgs/development/python-modules/cssmin/default.nix
new file mode 100644
index 00000000000..7cb01001fac
--- /dev/null
+++ b/pkgs/development/python-modules/cssmin/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+  pname = "cssmin";
+  version = "0.2.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1dk723nfm2yf8cp4pj785giqlwv42l0kj8rk40kczvq1hk6g04p0";
+  };
+
+  # no tests
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    description = "A Python port of the YUI CSS compression algorithm";
+    homepage = http://github.com/zacharyvoase/cssmin;
+    license = licenses.bsd3;
+  };
+}