Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 18 lines 452 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "zc.buildout"; 5 version = "2.13.4"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "b978b2f9317b317ee4191f78fcc4f05b1ac41bdaaae47f0956f14c8285feef63"; 10 }; 11 12 meta = with 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}