Merge pull request #36732 from etu/pychart-fixes
pychart: move to own file
This commit is contained in:
commit
fbea3ddd0c
2 changed files with 20 additions and 15 deletions
19
pkgs/development/python-modules/pychart/default.nix
Normal file
19
pkgs/development/python-modules/pychart/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi, isPy27 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pychart";
|
||||
version = "1.39";
|
||||
|
||||
disabled = ! isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "882650928776a7ca72e67054a9e0ac98f78645f279c0cfb5910db28f03f07c2e";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Library for creating high quality encapsulated Postscript, PDF, PNG, or SVG charts";
|
||||
homepage = https://pypi.python.org/pypi/PyChart;
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
}
|
|
@ -19655,21 +19655,7 @@ EOF
|
|||
};
|
||||
};
|
||||
|
||||
pychart = buildPythonPackage rec {
|
||||
name = "pychart-1.39";
|
||||
disabled = ! isPy27;
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "http://download.gna.org/pychart/PyChart-1.39.tar.gz";
|
||||
sha256 = "882650928776a7ca72e67054a9e0ac98f78645f279c0cfb5910db28f03f07c2e";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Library for creating high quality encapsulated Postscript, PDF, PNG, or SVG charts";
|
||||
homepage = http://home.gna.org/pychart/;
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
};
|
||||
pychart = callPackage ../development/python-modules/pychart {};
|
||||
|
||||
parsimonious = buildPythonPackage rec {
|
||||
version = "0.7.0";
|
||||
|
|
Loading…
Reference in a new issue