Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 18 lines 448 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "zc.buildout"; 5 version = "2.13.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0a73s5q548l2vs2acqs3blkzd9sw6d7ci77fz1pc9156vn3dxm2x"; 10 }; 11 12 meta = with stdenv.lib; { 13 homepage = http://www.buildout.org; 14 description = "A software build and configuration system"; 15 license = licenses.zpl21; 16 maintainers = with maintainers; [ ]; 17 }; 18}