Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 27 lines 529 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, isPy3k 5}: 6 7buildPythonPackage rec { 8 pname = "pyx"; 9 version = "0.14.1"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "05d1b7fc813379d2c12fcb5bd0195cab522b5aabafac88f72913f1d47becd912"; 14 }; 15 16 disabled = !isPy3k; 17 18 # No tests in archive 19 doCheck = false; 20 21 meta = with stdenv.lib; { 22 description = "Python package for the generation of PostScript, PDF, and SVG files"; 23 homepage = http://pyx.sourceforge.net/; 24 license = with licenses; [ gpl2 ]; 25 }; 26 27}