about summary refs log tree commit diff
path: root/pkgs/development/python-modules/premailer
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/premailer')
-rw-r--r--pkgs/development/python-modules/premailer/default.nix43
1 files changed, 0 insertions, 43 deletions
diff --git a/pkgs/development/python-modules/premailer/default.nix b/pkgs/development/python-modules/premailer/default.nix
deleted file mode 100644
index 69e4a00c5955..000000000000
--- a/pkgs/development/python-modules/premailer/default.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{
-  lib,
-  buildPythonPackage,
-  fetchPypi,
-  isPy27,
-  cssselect,
-  cssutils,
-  lxml,
-  mock,
-  nose,
-  requests,
-  cachetools,
-}:
-
-buildPythonPackage rec {
-  pname = "premailer";
-  version = "3.10.0";
-  format = "setuptools";
-  disabled = isPy27; # no longer compatible with urllib
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "d1875a8411f5dc92b53ef9f193db6c0f879dc378d618e0ad292723e388bfe4c2";
-  };
-
-  buildInputs = [
-    mock
-    nose
-  ];
-  propagatedBuildInputs = [
-    cachetools
-    cssselect
-    cssutils
-    lxml
-    requests
-  ];
-
-  meta = {
-    description = "Turns CSS blocks into style attributes ";
-    homepage = "https://github.com/peterbe/premailer";
-    license = lib.licenses.bsd3;
-  };
-}