Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 18 lines 467 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "zc.buildout"; 5 version = "2.13.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "3d14d07226963a517295dfad5879d2799e2e3b65b2c61c71b53cb80f5ab11484"; 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; [ garbas ]; 17 }; 18}