Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 24 lines 660 B view raw
1{ lib, buildPythonPackage, fetchPypi, setuptools }: 2 3buildPythonPackage rec { 4 pname = "buildbot-pkg"; 5 version = "1.8.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "16gjdzkris6475bvsgvb0v6rkn4xb6f55s468q37n0l1r6n8snc3"; 10 }; 11 12 postPatch = '' 13 # Their listdir function filters out `node_modules` folders. 14 # Do we have to care about that with Nix...? 15 substituteInPlace buildbot_pkg.py --replace "os.listdir = listdir" "" 16 ''; 17 18 meta = with lib; { 19 homepage = http://buildbot.net/; 20 description = "Buildbot Packaging Helper"; 21 maintainers = with maintainers; [ nand0p ryansydnor ]; 22 license = licenses.gpl2; 23 }; 24}