aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/premailer/default.nix
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-09-18 17:20:20 -0700
committerMatthieu Coudron <coudron@iij.ad.jp>2019-09-19 19:03:42 +0900
commit17287938abbcc914b685377d2c931f2529b8e659 (patch)
treec0ef15110c3e509f80528afeb6cc66d6077511af /pkgs/development/python-modules/premailer/default.nix
parentad4a3074c0b35ff8c414b4794f6e2f179e6b15e9 (diff)
pythonPackages.premailer: fix build
Diffstat (limited to 'pkgs/development/python-modules/premailer/default.nix')
-rw-r--r--pkgs/development/python-modules/premailer/default.nix16
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/premailer/default.nix b/pkgs/development/python-modules/premailer/default.nix
index 14fa0d2f59d4..f19f2dfe265d 100644
--- a/pkgs/development/python-modules/premailer/default.nix
+++ b/pkgs/development/python-modules/premailer/default.nix
@@ -1,22 +1,22 @@
{ lib, buildPythonPackage, fetchPypi,
- cssselect, cssutils, lxml, mock, nose, requests
+ cssselect, cssutils, lxml, mock, nose, requests, cachetools
}:
buildPythonPackage rec {
pname = "premailer";
version = "3.3.0";
- meta = {
- description = "Turns CSS blocks into style attributes ";
- homepage = https://github.com/peterbe/premailer;
- license = lib.licenses.bsd3;
- };
-
src = fetchPypi {
inherit pname version;
sha256 = "93be4f197e9d2a87a8fe6b5b6a79b64070dbb523108dfaf2a415b4558fc78ec1";
};
buildInputs = [ mock nose ];
- propagatedBuildInputs = [ cssselect cssutils lxml requests ];
+ propagatedBuildInputs = [ cachetools cssselect cssutils lxml requests ];
+
+ meta = {
+ description = "Turns CSS blocks into style attributes ";
+ homepage = https://github.com/peterbe/premailer;
+ license = lib.licenses.bsd3;
+ };
}