nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

pythonPackages.bonfire: mark broken

arrow package now only allows for time attributes
to be in the singular form (minute vs minutes).
bonfire also does not seem to be actively maintained

authored by

Jonathan Ringer and committed by
Frederik Rietdijk
128d6068 d80f10ed

+3 -4
+3 -4
pkgs/tools/misc/bonfire/default.nix
··· 3 3 with python3Packages; 4 4 5 5 buildPythonApplication rec { 6 - version = "2017-01-19"; 7 6 pname = "bonfire"; 8 - name = "${pname}-unstable-${version}"; 7 + version = "unstable-2017-01-19"; 9 8 10 9 # use latest git version with --endpoint flag 11 10 # https://github.com/blue-yonder/bonfire/pull/18 ··· 24 25 # pip fails when encountering the git hash for the package version 25 26 substituteInPlace setup.py \ 26 27 --replace "version=version," "version='${version}'," 27 - # remove extraneous files 28 + # remove extraneous files 28 29 substituteInPlace setup.cfg \ 29 30 --replace "data_files = *.rst, *.txt" "" 30 31 ''; ··· 44 45 license = licenses.bsd3; 45 46 maintainers = [ maintainers.womfoo ]; 46 47 platforms = platforms.linux; 48 + broken = true; # no longer compatible with new arrow package 47 49 }; 48 - 49 50 }