mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
29 lines
547 B
Nix
29 lines
547 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
isPy3k,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyx";
|
|
version = "0.16";
|
|
format = "setuptools";
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
pname = "PyX";
|
|
inherit version;
|
|
hash = "sha256-TY4+RxzT6am9E9UIbN98CvGww/PhledPX2MxjcQKZtg=";
|
|
};
|
|
|
|
# No tests in archive
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Python package for the generation of PostScript, PDF, and SVG files";
|
|
homepage = "https://pyx.sourceforge.net/";
|
|
license = with licenses; [ gpl2 ];
|
|
};
|
|
}
|