diff options
| author | Elis Hirwing <elis@hirwing.se> | 2018-04-03 13:13:12 +0200 |
|---|---|---|
| committer | Frederik Rietdijk <fridh@fridh.nl> | 2018-04-04 19:46:00 +0200 |
| commit | 4cf18fc2c5ec9c4e18d16db223f4e7c05ac87c68 (patch) | |
| tree | 176c8e47d47c239025aec2a2eb6e5cc71ca134c7 /pkgs/development/python-modules/cssutils | |
| parent | 434c31e825b6496aa3877e239aa51c429b70dbf0 (diff) | |
pythonPackages.cssutils: Move to own file
Diffstat (limited to 'pkgs/development/python-modules/cssutils')
| -rw-r--r-- | pkgs/development/python-modules/cssutils/default.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/cssutils/default.nix b/pkgs/development/python-modules/cssutils/default.nix new file mode 100644 index 000000000000..30398fd50062 --- /dev/null +++ b/pkgs/development/python-modules/cssutils/default.nix @@ -0,0 +1,22 @@ +{ stdenv, buildPythonPackage, fetchPypi, mock }: + +buildPythonPackage rec { + pname = "cssutils"; + version = "1.0.1"; + + src = fetchPypi { + inherit pname version; + sha256 = "0qwha9x1wml2qmipbcz03gndnlwhzrjdvw9i09si247a90l8p8fq"; + }; + + buildInputs = [ mock ]; + + # couple of failing tests + doCheck = false; + + meta = with stdenv.lib; { + description = "A Python package to parse and build CSS"; + homepage = http://code.google.com/p/cssutils/; + license = licenses.lgpl3Plus; + }; +} |
