mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
0215034f25
when they already rely on SRI hashes.
27 lines
516 B
Nix
27 lines
516 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy3k
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyx";
|
|
version = "0.16";
|
|
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 ];
|
|
};
|
|
}
|