1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 06:31:02 +00:00

pythonPackages.cairosvg: Move to own file

This commit is contained in:
Elis Hirwing 2018-03-31 17:42:33 +02:00 committed by Frederik Rietdijk
parent 007525282b
commit a8327fe5b4
2 changed files with 20 additions and 18 deletions

View file

@ -0,0 +1,19 @@
{ stdenv, buildPythonPackage, fetchPypi, cairocffi }:
buildPythonPackage rec {
pname = "cairosvg";
version = "1.0.18";
src = fetchPypi {
inherit pname version;
sha256 = "01lpm38qp7xlnv8jv7qg48j44p5088dwfsrcllgs5fz355lrfds1";
};
propagatedBuildInputs = [ cairocffi ];
meta = with stdenv.lib; {
homepage = https://cairosvg.org;
license = licenses.lgpl3;
description = "SVG converter based on Cairo";
};
}

View file

@ -1436,24 +1436,7 @@ in {
cairocffi = callPackage ../development/python-modules/cairocffi {};
cairosvg = buildPythonPackage rec {
version = "1.0.18";
name = "cairosvg-${version}";
src = pkgs.fetchurl {
url = "mirror://pypi/C/CairoSVG/CairoSVG-${version}.tar.gz";
sha256 = "01lpm38qp7xlnv8jv7qg48j44p5088dwfsrcllgs5fz355lrfds1";
};
propagatedBuildInputs = with self; [ cairocffi ];
meta = {
homepage = https://cairosvg.org;
license = licenses.lgpl3;
description = "SVG converter based on Cairo";
};
};
cairosvg = callPackage ../development/python-modules/cairosvg {};
carrot = buildPythonPackage rec {
name = "carrot-0.10.7";