aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/pyx/default.nix
blob: 8b5e3633e25c2a214aecaa506a153c25e3f2f689 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
}:

buildPythonPackage rec {
  pname = "pyx";
  version = "0.15";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0fc3b00c5e7fb6f4aefbf63b95f624297dde47700a82b8b5ad6ebb346b5e4977";
  };

  disabled = !isPy3k;

  # No tests in archive
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Python package for the generation of PostScript, PDF, and SVG files";
    homepage = "http://pyx.sourceforge.net/";
    license = with licenses; [ gpl2 ];
  };

}