Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ad4a3074c0b3
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 17287938abbc
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Sep 19, 2019

  1. pythonPackages.premailer: fix build

    Jonathan Ringer authored and Matthieu Coudron committed Sep 19, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    nolmoonen Nol Moonen
    Copy the full SHA
    1728793 View commit details
Showing with 8 additions and 8 deletions.
  1. +8 −8 pkgs/development/python-modules/premailer/default.nix
16 changes: 8 additions & 8 deletions pkgs/development/python-modules/premailer/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}