Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pychart / default.nix
blobaa9ef1c11c9bb9aafd1b9e22a0120e90c2374b10
1 { lib, buildPythonPackage, fetchPypi, isPy27 }:
3 buildPythonPackage rec {
4   pname = "pychart";
5   version = "1.39";
6   format = "setuptools";
8   disabled = ! isPy27;
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "882650928776a7ca72e67054a9e0ac98f78645f279c0cfb5910db28f03f07c2e";
13   };
15   meta = with lib; {
16     description = "Library for creating high quality encapsulated Postscript, PDF, PNG, or SVG charts";
17     homepage = "https://pypi.python.org/pypi/PyChart";
18     license = licenses.gpl2;
19   };