Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 490 B view raw
1{ lib, buildPythonPackage, fetchPypi, isPy27 }: 2 3buildPythonPackage rec { 4 pname = "pychart"; 5 version = "1.39"; 6 7 disabled = ! isPy27; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "882650928776a7ca72e67054a9e0ac98f78645f279c0cfb5910db28f03f07c2e"; 12 }; 13 14 meta = with lib; { 15 description = "Library for creating high quality encapsulated Postscript, PDF, PNG, or SVG charts"; 16 homepage = "https://pypi.python.org/pypi/PyChart"; 17 license = licenses.gpl2; 18 }; 19}