depot/third_party/nixpkgs/pkgs/development/python-modules/cssutils/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

22 lines
494 B
Nix

{ lib, buildPythonPackage, fetchPypi, mock }:
buildPythonPackage rec {
pname = "cssutils";
version = "1.0.2";
src = fetchPypi {
inherit pname version;
sha256 = "a2fcf06467553038e98fea9cfe36af2bf14063eb147a70958cfcaa8f5786acaf";
};
buildInputs = [ mock ];
# couple of failing tests
doCheck = false;
meta = with lib; {
description = "A Python package to parse and build CSS";
homepage = "http://cthedot.de/cssutils/";
license = licenses.lgpl3Plus;
};
}