Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildPythonPackage, 3 fetchFromGitHub, 4 lib, 5 pip, 6 setuptools, 7 wheel, 8}: 9 10buildPythonPackage rec { 11 pname = "zc-buildout"; 12 version = "3.0.1"; 13 14 src = fetchFromGitHub { 15 owner = "buildout"; 16 repo = "buildout"; 17 rev = version; 18 sha256 = "J/ymUCFhl7EviHMEYSUCTky0ULRT8aL4gNCGxrbqJi0="; 19 }; 20 21 propagatedBuildInputs = [ 22 setuptools 23 pip 24 wheel 25 ]; 26 27 doCheck = false; # Missing package & BLOCKED on "zc.recipe.egg" 28 29 pythonImportsCheck = [ "zc.buildout" ]; 30 31 meta = with lib; { 32 description = "Software build and configuration system"; 33 mainProgram = "buildout"; 34 downloadPage = "https://github.com/buildout/buildout"; 35 homepage = "https://www.buildout.org"; 36 license = licenses.zpl21; 37 maintainers = with maintainers; [ gotcha ]; 38 }; 39}