My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pyx/default.nix

26 lines
518 B

{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
}:
buildPythonPackage rec {
pname = "pyx";
version = "0.15";
disabled = !isPy3k;
src = fetchPypi {
pname = "PyX";
inherit version;
sha256 = "0xs9brmk9fvfmnsvi0haf13xwz994kv9afznzfpg9dkzbq6b1hqg";
};
# No tests in archive
doCheck = false;
meta = with lib; {
description = "Python package for the generation of PostScript, PDF, and SVG files";
homepage = "http://pyx.sourceforge.net/";
license = with licenses; [ gpl2 ];
};
}